From 6ae2911605309b66aa7be3ec44b5975d89a5c61d Mon Sep 17 00:00:00 2001 From: wanghuaz Date: Mon, 9 Mar 2009 08:11:00 +0000 Subject: [PATCH] the symbol "~." will introduce exceptions in rcons, and rcons has provided Ctrl+C+. to disconnect from console. so simply remove this symbol. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2859 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/PPCcli.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-xCAT/xCAT/PPCcli.pm b/perl-xCAT/xCAT/PPCcli.pm index 35d9d739d..aacbae817 100644 --- a/perl-xCAT/xCAT/PPCcli.pm +++ b/perl-xCAT/xCAT/PPCcli.pm @@ -543,7 +543,7 @@ sub mkvterm { # Give control to the user and intercept # the Ctrl-X (\030), and "~." sequences. ########################################## - my $escape = "\030|~."; + my $escape = "\030"; $ssh->send( "\r" ); $ssh->interact( \*STDIN, $escape );