slackbuilds_ponce/network/nss-mdns/doinst.sh
Robby Workman 29a24f72b4 network/nss-mdns: Misc updates and change of maintainer
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
2011-04-03 09:59:49 -05:00

14 lines
407 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...
}
config etc/mdns.allow.new
config etc/nsswitch.conf-mdns.new