You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by al...@apache.org on 2013/04/11 01:10:12 UTC

[49/50] git commit: updated refs/heads/internallb to ed0cb2f

Send only \n rather than \r\n to agent socket when sending cmdline
to system VMS

BUG-ID: CLOUDSTACK-1732
Signed-off-by: Marcus Sorensen <ma...@betterservers.com> 1365622030 -0600


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/c4411af1
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/c4411af1
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/c4411af1

Branch: refs/heads/internallb
Commit: c4411af1a9eca555f53ad57265ebc54cc7f3aa8c
Parents: 489e6f4
Author: Marcus Sorensen <ma...@betterservers.com>
Authored: Wed Apr 10 13:27:10 2013 -0600
Committer: Alena Prokharchyk <al...@citrix.com>
Committed: Wed Apr 10 15:44:06 2013 -0700

----------------------------------------------------------------------
 scripts/vm/hypervisor/kvm/patchviasocket.pl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/c4411af1/scripts/vm/hypervisor/kvm/patchviasocket.pl
----------------------------------------------------------------------
diff --git a/scripts/vm/hypervisor/kvm/patchviasocket.pl b/scripts/vm/hypervisor/kvm/patchviasocket.pl
index 443d6e4..7bcd245 100644
--- a/scripts/vm/hypervisor/kvm/patchviasocket.pl
+++ b/scripts/vm/hypervisor/kvm/patchviasocket.pl
@@ -53,6 +53,6 @@ my $msg = "pubkey:" . $key . "\ncmdline:" . $cmdline;
 
 my $socket = IO::Socket::UNIX->new(Peer=>$sockfile,Type=>SOCK_STREAM)
     or die "ERROR: unable to connect to $sockfile - $^E\n";
-print $socket "$msg\r\n";
+print $socket "$msg\n";
 close $socket;