blob: 5129a9435f7d673c7b1ac3c4beebf7282c594305 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
|