slackbuilds_ponce/network/ifplugd/doinst.sh
Anj Duvnjak 7d00fa1dbe network/ifplugd: Added (Network Daemon).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2022-10-20 20:47:44 +07:00

24 lines
519 B
Bash

config() {
NEW="$1"
OLD="$(dirname $NEW)/$(basename $NEW .new)"
if [ ! -r $OLD ]; then
mv $NEW $OLD
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
rm $NEW
fi
}
preserve_perms() {
NEW="$1"
OLD="$(dirname $NEW)/$(basename $NEW .new)"
if [ -e $OLD ]; then
cp -a $OLD ${NEW}.incoming
cat $NEW > ${NEW}.incoming
mv ${NEW}.incoming $NEW
fi
config $NEW
}
preserve_perms etc/rc.d/rc.ifplugd.new
config etc/ifplugd/ifplugd.conf.new
config etc/ifplugd/ifplugd.action.new