diff options
author | Thibaut Notteboom <tib@tibux.org> | 2011-12-11 22:11:27 -0600 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2011-12-18 00:07:45 -0200 |
commit | adfa160a33338632c054bfe7f2ea8c98d2943a5f (patch) | |
tree | bdc14f50fe1207756481ee5b751a1e3b2684e44e /network/heimdal/doinst.sh | |
parent | b16dcfda15b2aa602e654ebf003a74d8bf5c8dc1 (diff) | |
download | slackbuilds-adfa160a33338632c054bfe7f2ea8c98d2943a5f.tar.gz |
network/heimdal: Added (KTH Heimdal Kerberos)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/heimdal/doinst.sh')
-rw-r--r-- | network/heimdal/doinst.sh | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/network/heimdal/doinst.sh b/network/heimdal/doinst.sh new file mode 100644 index 0000000000..e47d56e712 --- /dev/null +++ b/network/heimdal/doinst.sh @@ -0,0 +1,35 @@ +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... +} + +preserve_perms() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + if [ -e $OLD ]; then + cp -a $OLD ${NEW}.incoming + cat $NEW > ${NEW}.incoming + mv ${NEW}.incoming $NEW + fi + config $NEW +} + +preserve_perms etc/rc.d/rc.heimdal.new +config etc/krb5.conf-sample.new +config var/heimdal/kdc.conf-sample.new +config etc/profile.d/heimdal.sh.new +config etc/profile.d/heimdal.csh.new + +# Add heimdal libs to the library search path +if ! grep -q '^/usr/heimdal/lib$' etc/ld.so.conf ; then + echo "/usr/heimdal/lib" >> etc/ld.so.conf +fi + |