summaryrefslogtreecommitdiffstats
path: root/network/igmpproxy/doinst.sh
diff options
context:
space:
mode:
Diffstat (limited to 'network/igmpproxy/doinst.sh')
-rw-r--r--network/igmpproxy/doinst.sh22
1 files changed, 22 insertions, 0 deletions
diff --git a/network/igmpproxy/doinst.sh b/network/igmpproxy/doinst.sh
new file mode 100644
index 0000000000..0108be007c
--- /dev/null
+++ b/network/igmpproxy/doinst.sh
@@ -0,0 +1,22 @@
+config() {
+ NEW="$1"
+ OLD="$(dirname $NEW)/$(basename $NEW .new)"
+ if [ ! -r $OLD ]; then
+ mv $NEW $OLD
+ elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
+ rm $NEW
+ fi
+}
+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}
+}
+
+config etc/igmpproxy.conf.new
+preserve_perms etc/rc.d/rc.igmpproxy.new