summaryrefslogtreecommitdiffstats
path: root/network/mod_auth_kerb/doinst.sh
diff options
context:
space:
mode:
author Thibaut Notteboom2013-02-10 08:36:50 +0100
committer Erik Hanson2013-02-14 07:26:35 +0100
commit7f2f69966e97765c8fd54a70a29e8cafe006028e (patch)
tree9d04f00e3135ad7522e12062c6e5e86ad535e75f /network/mod_auth_kerb/doinst.sh
parentc2b1f1137e757b3a3f21e7c6dda333b058e84e85 (diff)
downloadslackbuilds-7f2f69966e97765c8fd54a70a29e8cafe006028e.tar.gz
network/mod_auth_kerb: Added (Kerberos Module for Apache)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/mod_auth_kerb/doinst.sh')
-rw-r--r--network/mod_auth_kerb/doinst.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/network/mod_auth_kerb/doinst.sh b/network/mod_auth_kerb/doinst.sh
new file mode 100644
index 0000000000..114a9cd4bc
--- /dev/null
+++ b/network/mod_auth_kerb/doinst.sh
@@ -0,0 +1,16 @@
+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/httpd/extra/mod_auth_kerb.conf.new
+
+