diff options
author | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2018-05-06 16:13:51 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-05-12 06:58:23 +0700 |
commit | af7fe71764b4dd8992634cb5634e4d41843c905a (patch) | |
tree | 04fa1bfa3530ab22c1b9dfa23b26f54342bed4f1 /network/miniupnpd/doinst.sh | |
parent | a8ecd8cbf73a874bea6b42fc17af726a7f3c8a07 (diff) |
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.sh | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/network/miniupnpd/doinst.sh b/network/miniupnpd/doinst.sh new file mode 100644 index 0000000000000..9454c5d3501ba --- /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 |