summaryrefslogtreecommitdiffstats
path: root/network/pptpd/doinst.sh
diff options
context:
space:
mode:
author Robby Workman <rw@rlworkman.net>2010-05-11 22:55:01 +0200
committer David Somero <xgizzmo@slackbuilds.org>2010-05-11 22:55:01 +0200
commit8e5a0c1f0cbf3290405c1c7da4975570d421fbf6 (patch)
treef9b5ea3e4dfbd925e86bd2d0dc238246a7d00b55 /network/pptpd/doinst.sh
parent1565510862c21b63891da958d258f1e593aa5667 (diff)
downloadslackbuilds-8e5a0c1f0cbf3290405c1c7da4975570d421fbf6.tar.gz
slackbuilds-8e5a0c1f0cbf3290405c1c7da4975570d421fbf6.tar.xz
network/pptpd: Added to 12.1 repository
Diffstat (limited to 'network/pptpd/doinst.sh')
-rw-r--r--network/pptpd/doinst.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/network/pptpd/doinst.sh b/network/pptpd/doinst.sh
new file mode 100644
index 0000000000..e2a762aa12
--- /dev/null
+++ b/network/pptpd/doinst.sh
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+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...
+}
+
+config etc/pptpd.conf.new
+config etc/ppp/options.pptpd.new
+config etc/ppp/chap-secrets.new
+