diff options
author | fdeak <ferenc.deak@gmail.com> | 2010-05-11 22:54:46 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-11 22:54:46 +0200 |
commit | b5793a1e3c6a0281d5dc112a6ae9f5482adc51f7 (patch) | |
tree | 085d4f01ddf5737307c00107a9919faa3857b283 /network/firehol/doinst.sh | |
parent | 1fe5cc762326ddcee28e0fd0c0a25c96b8646454 (diff) | |
download | slackbuilds-b5793a1e3c6a0281d5dc112a6ae9f5482adc51f7.tar.gz |
network/firehol: Added to 12.1 repository
Diffstat (limited to 'network/firehol/doinst.sh')
-rw-r--r-- | network/firehol/doinst.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/network/firehol/doinst.sh b/network/firehol/doinst.sh new file mode 100644 index 0000000000..1f2432eb09 --- /dev/null +++ b/network/firehol/doinst.sh @@ -0,0 +1,23 @@ +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.firehol.new: +if [ -e etc/rc.d/rc.firehol ]; then + cp -a etc/rc.d/rc.firehol etc/rc.d/rc.firehol.new.incoming + cat etc/rc.d/rc.firehol.new > etc/rc.d/rc.firehol.new.incoming + mv etc/rc.d/rc.firehol.new.incoming etc/rc.d/rc.firehol.new +fi + +config etc/rc.d/rc.firehol.new +config etc/firehol/firehol.conf.new + |