summaryrefslogtreecommitdiffstats
path: root/network/miniupnpd/doinst.sh
diff options
context:
space:
mode:
author Andreas Guldstrand2018-05-06 17:13:51 +0200
committer Willy Sudiarto Raharjo2018-05-12 01:58:23 +0200
commitaf7fe71764b4dd8992634cb5634e4d41843c905a (patch)
tree04fa1bfa3530ab22c1b9dfa23b26f54342bed4f1 /network/miniupnpd/doinst.sh
parenta8ecd8cbf73a874bea6b42fc17af726a7f3c8a07 (diff)
downloadslackbuilds-af7fe71764b4dd8992634cb5634e4d41843c905a.tar.gz
network/miniupnpd: Added (IGD Protocol, NAT-PMP, and PCP daemon).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'network/miniupnpd/doinst.sh')
-rw-r--r--network/miniupnpd/doinst.sh26
1 files changed, 26 insertions, 0 deletions
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