summaryrefslogtreecommitdiffstats
path: root/network/openl2tp/doinst.sh
diff options
context:
space:
mode:
author Eugene P2011-10-11 21:48:28 +0200
committer Robby Workman2011-10-11 21:48:28 +0200
commit1b9bd70f42652a76f3ca12e0fcd34e4c1b01084c (patch)
treea650a8cf50957c671715f3eb9efce62b7ea5f525 /network/openl2tp/doinst.sh
parentdbc37fd6f34b1c74994d7b2c25b1d61448c01e2c (diff)
downloadslackbuilds-1b9bd70f42652a76f3ca12e0fcd34e4c1b01084c.tar.gz
network/openl2tp: Added (Layer Two Tunneling Protocol Version 2)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/openl2tp/doinst.sh')
-rw-r--r--network/openl2tp/doinst.sh27
1 files changed, 27 insertions, 0 deletions
diff --git a/network/openl2tp/doinst.sh b/network/openl2tp/doinst.sh
new file mode 100644
index 0000000000..f62e4e7af9
--- /dev/null
+++ b/network/openl2tp/doinst.sh
@@ -0,0 +1,27 @@
+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.openl2tpd.new
+config etc/sysconfig/openl2tpd.new
+config etc/openl2tpd.conf.new
+