From 6663679a5b85babf76747dd3a90bfc695c39c765 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Fri, 4 Mar 2011 20:49:46 +0000 Subject: [PATCH] Correct BoMC proxy argument syntax git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@9000 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/share/xcat/tools/mktoolscenter | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xCAT-server/share/xcat/tools/mktoolscenter b/xCAT-server/share/xcat/tools/mktoolscenter index c06c524ab..13a8cea9b 100755 --- a/xCAT-server/share/xcat/tools/mktoolscenter +++ b/xCAT-server/share/xcat/tools/mktoolscenter @@ -296,12 +296,12 @@ if ( system("cp $srcdir/$util $repo") or system("cp $asudir/$asu $repo")) { my $optstr = ""; if ($proxy{host} ne "") { - $optstr = " --proxy-address $proxy{host} --proxy-port $proxy{port}"; + $optstr = " --proxy-address=$proxy{host} --proxy-port=$proxy{port}"; if ($proxy{user} ne "") { - $optstr .= " --proxy-user $proxy{user}"; + $optstr .= " --proxy-user=$proxy{user}"; } if ($proxy{pw} ne "") { - $optstr .= " --proxy-password $proxy{pw}"; + $optstr .= " --proxy-password=$proxy{pw}"; } }