diff options
author | Pablo Oses <opablo@gmail.com> | 2010-05-12 23:32:25 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-12 23:32:25 +0200 |
commit | dbf69b7af097d6868491f123336d7fd0d1271de0 (patch) | |
tree | c308202d1702597873bbbfd44512c1250ab558ea /network/miniupnpd/doinst.sh | |
parent | 2576f42871101c77f74cc25feb43846a93a1571b (diff) | |
download | slackbuilds-dbf69b7af097d6868491f123336d7fd0d1271de0.tar.gz |
network/miniupnpd: Added to 12.2 repository
Diffstat (limited to 'network/miniupnpd/doinst.sh')
-rw-r--r-- | network/miniupnpd/doinst.sh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/network/miniupnpd/doinst.sh b/network/miniupnpd/doinst.sh new file mode 100644 index 0000000000..8940738107 --- /dev/null +++ b/network/miniupnpd/doinst.sh @@ -0,0 +1,25 @@ +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.miniupnpd.new: +if [ -e etc/rc.d/rc.miniupnpd ]; then + cp -a etc/rc.d/rc.miniupnpd etc/rc.d/rc.miniupnpd.new.incoming + cat etc/rc.d/rc.miniupnpd.new > etc/rc.d/rc.miniupnpd.new.incoming + mv etc/rc.d/rc.miniupnpd.new.incoming etc/rc.d/rc.miniupnpd.new +fi + +config etc/rc.d/rc.miniupnpd.new +config etc/miniupnpd/miniupnpd.conf.new +config etc/miniupnpd/iptables_init.sh.new +config etc/miniupnpd/iptables_removeall.sh.new + |