From 062d4f36456327c24fde6fb10d11ca3994fdf9ec Mon Sep 17 00:00:00 2001 From: linggao Date: Thu, 12 Feb 2009 13:56:47 +0000 Subject: [PATCH] added quotes for some of the env in the postscripts git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2729 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/Postage.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-xCAT/xCAT/Postage.pm b/perl-xCAT/xCAT/Postage.pm index 59961266a..a6df68670 100644 --- a/perl-xCAT/xCAT/Postage.pm +++ b/perl-xCAT/xCAT/Postage.pm @@ -141,7 +141,7 @@ sub makescript { push @scriptd, "export $attribute\n"; } else { # not Master attribute - push @scriptd, "$attribute=".$value."\n"; + push @scriptd, "$attribute='".$value."'\n"; push @scriptd, "export $attribute\n"; } }