From af7fe71764b4dd8992634cb5634e4d41843c905a Mon Sep 17 00:00:00 2001 From: Andreas Guldstrand Date: Sun, 6 May 2018 16:13:51 +0100 Subject: network/miniupnpd: Added (IGD Protocol, NAT-PMP, and PCP daemon). Signed-off-by: David Spencer --- network/miniupnpd/doinst.sh | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 network/miniupnpd/doinst.sh (limited to 'network/miniupnpd/doinst.sh') diff --git a/network/miniupnpd/doinst.sh b/network/miniupnpd/doinst.sh new file mode 100644 index 0000000000..9454c5d350 --- /dev/null +++ b/network/miniupnpd/doinst.sh @@ -0,0 +1,26 @@ +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... +} + +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.miniupnpd.new +config etc/miniupnpd/miniupnpd.conf.new -- cgit v1.2.3