slackbuilds_ponce/network/polipo/doinst.sh
Brenton Earl c7c801993b network/polipo: Update doinst.sh + switch to i586.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
2018-03-31 07:41:28 +07:00

26 lines
798 B
Bash

config() {
NEW="$1"
OLD="$(dirname $NEW)/$(basename $NEW .new)"
# If there's no config file by that name, mv it over:
if [ ! -r $OLD ]; then
mv $NEW $OLD
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
# toss the redundant copy
rm $NEW
fi
# Otherwise, we leave the .new copy for the admin to consider...
}
# Keep same perms on rc.polipo.new:
if [ -e etc/rc.d/rc.polipo ]; then
cp -a etc/rc.d/rc.polipo etc/rc.d/rc.polipo.new.incoming
cat etc/rc.d/rc.polipo.new > etc/rc.d/rc.polipo.new.incoming
mv etc/rc.d/rc.polipo.new.incoming etc/rc.d/rc.polipo.new
fi
if [ -x /usr/bin/install-info ]; then
chroot . /usr/bin/install-info --info-dir=/usr/info /usr/info/polipo.info.gz 2> /dev/null
fi
config etc/rc.d/rc.polipo.new
config etc/polipo/config.new