diff options
author | Thibaut Notteboom <thibaut.notteboom@gmail.com> | 2021-05-02 15:35:17 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2021-05-02 15:35:17 -0500 |
commit | a0b18476a205fb4fafdc1d3665b089f56d507e49 (patch) | |
tree | 57644f8e287f555457fa2de2f3c98050655d5101 /network/heimdal/config | |
parent | 2b6dc73415bbf04a4d926b78397998da0d947db9 (diff) | |
download | slackbuilds-a0b18476a205fb4fafdc1d3665b089f56d507e49.tar.gz |
network/heimdal: Fixed for Slackware 15.0
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/heimdal/config')
-rw-r--r-- | network/heimdal/config/heimdal.sh | 4 | ||||
-rw-r--r-- | network/heimdal/config/rc.ipropd-master | 6 | ||||
-rw-r--r-- | network/heimdal/config/rc.ipropd-slave | 6 | ||||
-rw-r--r-- | network/heimdal/config/rc.kadmind | 6 | ||||
-rw-r--r-- | network/heimdal/config/rc.kdc | 6 | ||||
-rw-r--r-- | network/heimdal/config/rc.kpasswdd | 6 |
6 files changed, 19 insertions, 15 deletions
diff --git a/network/heimdal/config/heimdal.sh b/network/heimdal/config/heimdal.sh new file mode 100644 index 0000000000..fd3f0bdba4 --- /dev/null +++ b/network/heimdal/config/heimdal.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +export PATH=/usr/heimdal/bin:/usr/heimdal/sbin:$PATH +export MANPATH=/usr/heimdal/man:$MANPATH diff --git a/network/heimdal/config/rc.ipropd-master b/network/heimdal/config/rc.ipropd-master index 744943b4c5..054048c440 100644 --- a/network/heimdal/config/rc.ipropd-master +++ b/network/heimdal/config/rc.ipropd-master @@ -3,9 +3,9 @@ HOSTNAME=`hostname -f` ipropd_master_start() { - if [ -x /usr/libexec/ipropd-master ]; then - echo "Starting the ipropd-master service: /usr/libexec/ipropd-master --detach" - /usr/libexec/ipropd-master --detach --hostname=$HOSTNAME + if [ -x /usr/heimdal/libexec/ipropd-master ]; then + echo "Starting the ipropd-master service: /usr/heimdal/libexec/ipropd-master --detach" + /usr/heimdal/libexec/ipropd-master --detach --hostname=$HOSTNAME fi } diff --git a/network/heimdal/config/rc.ipropd-slave b/network/heimdal/config/rc.ipropd-slave index 6b1a8c7274..9364430e07 100644 --- a/network/heimdal/config/rc.ipropd-slave +++ b/network/heimdal/config/rc.ipropd-slave @@ -4,9 +4,9 @@ KEYTAB=/etc/iprop.keytab HOSTNAME=`hostname -f` ipropd_slave_start() { - if [ -x /usr/libexec/ipropd-slave ]; then - echo "Starting the ipropd-slave service: /usr/libexec/ipropd-slave --detach" - /usr/libexec/ipropd-slave --detach --keytab=$KEYTAB --hostname=$HOSTNAME + if [ -x /usr/heimdal/libexec/ipropd-slave ]; then + echo "Starting the ipropd-slave service: /usr/heimdal/libexec/ipropd-slave --detach" + /usr/heimdal/libexec/ipropd-slave --detach --keytab=$KEYTAB --hostname=$HOSTNAME fi } diff --git a/network/heimdal/config/rc.kadmind b/network/heimdal/config/rc.kadmind index 23b5447078..4487b492bc 100644 --- a/network/heimdal/config/rc.kadmind +++ b/network/heimdal/config/rc.kadmind @@ -1,9 +1,9 @@ #!/bin/sh kadmind_start() { - if [ -x /usr/libexec/kadmind ]; then - echo "Starting the kadmind service: /usr/libexec/kadmind" - /usr/libexec/kadmind --detach + if [ -x /usr/heimdal/libexec/kadmind ]; then + echo "Starting the kadmind service: /usr/heimdal/libexec/kadmind" + /usr/heimdal/libexec/kadmind --detach fi } diff --git a/network/heimdal/config/rc.kdc b/network/heimdal/config/rc.kdc index 3233794801..09c9f37827 100644 --- a/network/heimdal/config/rc.kdc +++ b/network/heimdal/config/rc.kdc @@ -1,9 +1,9 @@ #!/bin/sh kdc_start() { - if [ -x /usr/libexec/kdc ]; then - echo "Starting the kdc service: /usr/libexec/kdc --detach" - /usr/libexec/kdc --detach + if [ -x /usr/heimdal/libexec/kdc ]; then + echo "Starting the kdc service: /usr/heimdal/libexec/kdc --detach" + /usr/heimdal/libexec/kdc --detach fi } diff --git a/network/heimdal/config/rc.kpasswdd b/network/heimdal/config/rc.kpasswdd index f712ee8e45..793d3d2094 100644 --- a/network/heimdal/config/rc.kpasswdd +++ b/network/heimdal/config/rc.kpasswdd @@ -1,9 +1,9 @@ #!/bin/sh kpasswdd_start() { - if [ -x /usr/libexec/kpasswdd ]; then - echo "Starting the kpasswdd service: /usr/libexec/kpasswdd" - /usr/libexec/kpasswdd --detach + if [ -x /usr/heimdal/libexec/kpasswdd ]; then + echo "Starting the kpasswdd service: /usr/heimdal/libexec/kpasswdd" + /usr/heimdal/libexec/kpasswdd --detach fi } |