From c8c259b87d18620efca83f008cd697714464af6d Mon Sep 17 00:00:00 2001 From: wanghuaz Date: Thu, 24 Jan 2013 10:14:39 +0000 Subject: [PATCH] Fixing bug 3180: use >> to avoid overwrite the same file git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/branches/2.7@14979 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-IBMhpc/share/xcat/IBMhpc/gpfs/gpfs_updates | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/xCAT-IBMhpc/share/xcat/IBMhpc/gpfs/gpfs_updates b/xCAT-IBMhpc/share/xcat/IBMhpc/gpfs/gpfs_updates index 80d18d812..1476c2216 100755 --- a/xCAT-IBMhpc/share/xcat/IBMhpc/gpfs/gpfs_updates +++ b/xCAT-IBMhpc/share/xcat/IBMhpc/gpfs/gpfs_updates @@ -105,10 +105,10 @@ else # assume Linux echo 'export PATH=$PATH:/usr/lpp/mmfs/bin' > $gpfsprofile.sh echo 'setenv PATH $PATH:/usr/lpp/mmfs/bin' > $gpfsprofile.csh # Turn off LANG support since we did not install other msg catalogs - echo 'export LC_CTYPE=POSIX' > $gpfsprofile.sh - echo 'setenv LC_CTYPE POSIX' > $gpfsprofile.csh - echo 'export LC_ALL=POSIX' > $gpfsprofile.sh - echo 'setenv LC_ALL POSIX' > $gpfsprofile.csh + echo 'export LC_CTYPE=POSIX' >> $gpfsprofile.sh + echo 'setenv LC_CTYPE POSIX' >> $gpfsprofile.csh + echo 'export LC_ALL=POSIX' >> $gpfsprofile.sh + echo 'setenv LC_ALL POSIX' >> $gpfsprofile.csh chmod 744 $gpfsprofile.sh chmod 744 $gpfsprofile.csh fi