diff options
author | gshep <shepelev.georgy@googlemail.com> | 2010-04-16 22:05:37 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-15 10:38:11 +0200 |
commit | 89561721635655f34b446a885bdd0f2ede45bc95 (patch) | |
tree | ce224939a76e9badab8dfab42fac75c1f275e7a5 /network/xl2tpd/doinst.sh | |
parent | d09ff52f2a799879c552bbdc401dea4b5f99bda3 (diff) | |
download | slackbuilds-89561721635655f34b446a885bdd0f2ede45bc95.tar.gz |
network/xl2tpd: Added (L2TP daemon)
Diffstat (limited to 'network/xl2tpd/doinst.sh')
-rw-r--r-- | network/xl2tpd/doinst.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/network/xl2tpd/doinst.sh b/network/xl2tpd/doinst.sh new file mode 100644 index 0000000000..c20744d1a0 --- /dev/null +++ b/network/xl2tpd/doinst.sh @@ -0,0 +1,17 @@ +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/xl2tpd/xl2tpd.conf.new +config etc/ppp/options.xl2tpd.new +config etc/ppp/chap-secrets.new + |