remove cleanup code for old conffile
authorDennis Groenen <tj.groenen@gmail.com>
Tue, 16 Oct 2012 13:55:45 +0000 (15:55 +0200)
committerDennis Groenen <tj.groenen@gmail.com>
Tue, 16 Oct 2012 13:55:45 +0000 (15:55 +0200)
debian/busybox-power.postinst

index d900083..b90ab79 100644 (file)
@@ -3,12 +3,3 @@ set -e
 
 /opt/busybox-power/busybox.power sh /opt/busybox-power/install-binary.sh
 
-# Clean up conffile (from busybox-power 1.19.3power4 & 1.19.3power5)
-if test -e /etc/environment; then
-  ORIGCONFIG_MD5="d23caa13476e0d872d23e7290b52f544"
-  INSTCONFIG_MD5=`md5sum /etc/environment | awk '{ print $1 }'`
-  if test "$INSTCONFIG_MD5" == "$ORIGCONFIG_MD5"; then
-    rm /etc/environment
-  fi
-fi
-