From 5263081254d42372dc1e1e275c071e11b4f387c9 Mon Sep 17 00:00:00 2001 From: xq2005 Date: Tue, 9 Jul 2013 07:21:49 +0000 Subject: [PATCH] ubuntu and debian ship SHA.pm instand of SHA1.pm git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@16914 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/debian/postinst | 8 -------- 1 file changed, 8 deletions(-) diff --git a/xCAT-server/debian/postinst b/xCAT-server/debian/postinst index 5988fcf27..270fee7cd 100644 --- a/xCAT-server/debian/postinst +++ b/xCAT-server/debian/postinst @@ -34,14 +34,6 @@ case "$1" in 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). - #but ipmi.pm need SHA1.pm, so create this link - shalocate=`find /usr/lib/perl -name "SHA.pm"` - shalocate=${shalocate%SHA.pm} - cd $shalocate - if [ ! -e SHA1.pm ];then - ln -s SHA.pm SHA1.pm - fi cd - ;;