From c7e0ccca477109b2db54c29e2a375d7a35299bb3 Mon Sep 17 00:00:00 2001 From: wanghuaz Date: Thu, 29 Nov 2012 07:54:12 +0000 Subject: [PATCH] Fixing bug 3180, use append instead of overwrite to update gpfsprofile git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@14474 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