diff options
author | Thibaut Notteboom <tib@tibux.org> | 2011-12-19 23:13:14 -0600 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-12-19 23:13:14 -0600 |
commit | 5307c9ad60c78b8e90f561e0bed8f2c94444ca2d (patch) | |
tree | 483bcb86abc2b354cd799e026d809ab17fb10005 /network/mod_auth_kerb/doinst.sh | |
parent | a3c41cc16f3149ddcf88a0c679288e726ef690a6 (diff) | |
download | slackbuilds-5307c9ad60c78b8e90f561e0bed8f2c94444ca2d.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 | 13 |
1 files changed, 13 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..accf625eb0 --- /dev/null +++ b/network/mod_auth_kerb/doinst.sh @@ -0,0 +1,13 @@ +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 |