sync from trunk

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/branches/2.8@15422 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
xq2005 2013-03-08 03:00:17 +00:00
parent 8bab44fcbc
commit 2451236800

View File

@ -31,6 +31,7 @@ case "$1" in
if [ -f "/proc/cmdline" ]; then # prevent running it during install into chroot image
/etc/init.d/xcatd reload
fi
rm /tmp/xCAT-server_upgrade.tmp
fi
ln -sf /opt/xcat/sbin/xcatd /usr/sbin/xcatd
#SHA1 has been get rid of after Squeeze released. Its functionality is also provided by Digest::SHA (which is in core).
@ -38,7 +39,9 @@ case "$1" in
shalocate=`find / -name "SHA.pm"`
shalocate=${shalocate%SHA.pm}
cd $shalocate
ln -s SHA.pm SHA1.pm
if [ ! -e SHA1.pm ];then
ln -s SHA.pm SHA1.pm
fi
cd -
;;