diff options
author | Thibaut Notteboom <tib@tibux.org> | 2013-02-10 01:36:50 -0600 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2013-02-14 00:26:35 -0600 |
commit | 7f2f69966e97765c8fd54a70a29e8cafe006028e (patch) | |
tree | 9d04f00e3135ad7522e12062c6e5e86ad535e75f /network/mod_auth_kerb/doinst.sh | |
parent | c2b1f1137e757b3a3f21e7c6dda333b058e84e85 (diff) | |
download | slackbuilds-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.sh | 16 |
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 + + |