From e7a9c4461b80c1b9337f2d97c965ad181e0ba6a5 Mon Sep 17 00:00:00 2001 From: "Menno E. Duursma" Date: Tue, 11 May 2010 15:01:28 +0200 Subject: network/heimdal: Initial import --- network/heimdal/doinst.sh | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 network/heimdal/doinst.sh (limited to 'network/heimdal/doinst.sh') diff --git a/network/heimdal/doinst.sh b/network/heimdal/doinst.sh new file mode 100644 index 0000000000..0b5f0905ad --- /dev/null +++ b/network/heimdal/doinst.sh @@ -0,0 +1,31 @@ +# 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 + if [ -x /sbin/ldconfig ]; then /sbin/ldconfig ; fi +fi + +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/krb5.conf-sample.new +config etc/profile.d/heimdal.sh.new +config etc/profile.d/heimdal.csh.new +config etc/rc.d/rc.heimdal.new +config var/heimdal/kdc.conf-sample.new + +# Any user should be able to ``kinit'' at least +if [ ! -x etc/profile.d/heimdal.sh ]; then + chmod +x etc/profile.d/heimdal.sh + chmod +x etc/profile.d/heimdal.csh +fi + -- cgit v1.2.3-79-gdb01