/usr/share/sadms-2.0.15/_install-kerberos.sh is in sadms 2.0.15.repack-0ubuntu2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | #!/bin/bash
# bbou@ac-toulouse.fr
# 2007-05-22 16:36:08
# _install-kerberos.sh
### P A R A M S
MYNARGS=$#
MYPAM="$1"
if [ "${MYPAM}" == "-pam" ];then
shift
else
MYPAM=
fi
MYREALM="$1"
MYDNS="$2"
MYKDC="$3"
if [ ${MYNARGS} -lt 3 ]
then
echo "Incorrect number of parameters"
exit 1
fi
### I N C L U D E
. ./_include.sh
### S T A R T
# S T A T U S
[ -d /var/lib/sadms ] || mkdir -p /var/lib/sadms
echo '0' > /var/lib/sadms/kerberos
# H E A D E R
echo "-------------------------------------------------------------------------------"
echo "S A D M S `cat version | head -n 1`"
echo "Samba as Active Directory Member Server"
echo "bbou@ac-toulouse.fr"
echo "- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -"
echo "configure Kerberos"
echo "-------------------------------------------------------------------------------"
echo "[BEGIN]"
# make sure real is uppercase
realm=`echo "${MYREALM}" | tr '[:lower:]' '[:upper:]'`
# make sure real is uppercase
pushd conf > /dev/null
./config-kerberos.sh "${realm}" "${MYDNS}" "${MYKDC}"
popd > /dev/null
echo "[END]"
|