slackbuilds_ponce/network/arno-iptables-firewall/doinst.sh
Philip Lacroix 26e1286f3a network/arno-iptables-firewall: Added (a front-end for iptables).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2014-03-12 12:42:52 -05:00

14 lines
310 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
}
CONFIG=${CONFIG:-/etc/arno-iptables-firewall}
for conf in $( find $CONFIG -name *.new ) ; do
config ${conf}
done