From d747bbfa627e3f3889fb207558de2a60310e8dc3 Mon Sep 17 00:00:00 2001 From: Guohan Lu Date: Sat, 24 Nov 2018 00:48:56 +0000 Subject: [PATCH] [vs]: connect to localhost instead 127.0.0.1 in check_install.py Signed-off-by: Guohan Lu --- check_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check_install.py b/check_install.py index 09979f61e4ba..58923c1a139c 100755 --- a/check_install.py +++ b/check_install.py @@ -24,7 +24,7 @@ def main(): cmd_prompt = "%s@sonic:~\$ $" % args.u grub_selection = "The highlighted entry will be executed" - p = pexpect.spawn("telnet 127.0.0.1 %s" % args.p, timeout=600, logfile=sys.stdout) + p = pexpect.spawn("telnet localhost %s" % args.p, timeout=600, logfile=sys.stdout) # select ONIE embed p.expect(grub_selection)