summaryrefslogtreecommitdiffstats
path: root/network/heimdal/config
diff options
context:
space:
mode:
author Menno Duursma2010-10-19 18:11:22 +0200
committer Michiel van Wessem2010-10-19 18:11:22 +0200
commit1f03a0e8f069db34508633d2df61701eba96368e (patch)
treebb0b9e0f759747367f199e87a92c7190873eb9e7 /network/heimdal/config
parent584ec3e1a28c6c302ddb506e388e5424b0835fee (diff)
downloadslackbuilds-1f03a0e8f069db34508633d2df61701eba96368e.tar.gz
network/heimdal: Updated for version 1.4.
Signed-off-by: Michiel van Wessem <michiel@slackbuilds.org>
Diffstat (limited to 'network/heimdal/config')
-rw-r--r--network/heimdal/config/heimdal.csh8
-rw-r--r--network/heimdal/config/heimdal.sh10
-rw-r--r--network/heimdal/config/kdc.conf20
-rw-r--r--network/heimdal/config/rc.heimdal36
4 files changed, 0 insertions, 74 deletions
diff --git a/network/heimdal/config/heimdal.csh b/network/heimdal/config/heimdal.csh
deleted file mode 100644
index be96ce7347..0000000000
--- a/network/heimdal/config/heimdal.csh
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/csh
-
-setenv MANPATH ${MANPATH}:/usr/heimdal/man
-
-setenv PATH "${PATH}:/usr/heimdal/bin"
-if ( x"$uid" == x"0" ) then
- setenv PATH "${PATH}:/usr/heimdal/sbin"
-endif
diff --git a/network/heimdal/config/heimdal.sh b/network/heimdal/config/heimdal.sh
deleted file mode 100644
index 561d30a296..0000000000
--- a/network/heimdal/config/heimdal.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-
-MANPATH="$MANPATH:/usr/heimdal/man"
-export MANPATH
-
-PATH="${PATH}:/usr/heimdal/bin"
-if [ x"${EUID}" == x"0" ]; then
- PATH="${PATH}:/usr/heimdal/sbin"
-fi
-export PATH
diff --git a/network/heimdal/config/kdc.conf b/network/heimdal/config/kdc.conf
deleted file mode 100644
index 180b8ab69e..0000000000
--- a/network/heimdal/config/kdc.conf
+++ /dev/null
@@ -1,20 +0,0 @@
-# Leave this section out on the clients
-[kdc]
- # Space seperated list of addresses to listen for requests on.
- #addresses = 192.168.0.1 172.16.0.1 10.0.0.1
-
- # Following directive is needed when KDC starts atomatically
- require-preauth = no
-
- # database key file
- key-file = /var/heimdal/key-file
-
- # Check the addresses in the ticket when processing TGS requests.
- check-ticket-addresses = TRUE
-
- # Permit tickets with no addresses.
- #allow-null-ticket-addresses = TRUE
-
- # Permit anonymous tickets with no addresses.
- #allow-anonymous = TRUE
-
diff --git a/network/heimdal/config/rc.heimdal b/network/heimdal/config/rc.heimdal
deleted file mode 100644
index 7c0b93fe72..0000000000
--- a/network/heimdal/config/rc.heimdal
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/sh
-
-heimdal_start() {
- if [ -r /var/heimdal/kdc.conf -a -x /usr/heimdal/libexec/kdc ]; then
- echo "Starting the Kerberos service: /usr/heimdal/libexec/kdc --detach"
- /usr/heimdal/libexec/kdc --detach
- fi
-
-}
-
-heimdal_stop() {
- killall kdc
-
-}
-
-heimdal_restart() {
- heimdal_stop
- sleep 1
- heimdal_start
-
-}
-
-case "$1" in
-'start')
- heimdal_start
- ;;
-'stop')
- heimdal_stop
- ;;
-'restart')
- heimdal_restart
- ;;
-*)
- echo "Usage: $0 start|stop|restart"
-esac
-