This file is indexed.

/usr/share/sadms-2.0.15/_check-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
51
#!/bin/bash
# bbou@ac-toulouse.fr
# 2006-08-22 11:46:20     
# _check-kerberos.sh

### P A R A M S

if [ "$1" = "-v" ]; then
	MYVERBOSE="True"
	shift
fi

### I N C L U D E

. ./_include.sh

###  S T A R T

case ${DISTRIBUTION} in
	Redhat|Fedora|Mandriva)
		krbpkg="krb5-workstation"
		krbpkgs="krb5-workstation"
		;;
	Suse)
		krbpkg="krb5-client"
		krbpkgs="krb5-client"
		;;
	Debian|Ubuntu)
		krbpkg="krb5-user"
		krbpkgs="krb5-user"
		;;
	*)
		echo "Distribution not supported"
		exit
		;;
esac

echo "+KERBEROS"
for i in ${krbpkg}; do
	if ! ${PACKAGETEST} ${i} 2> /dev/null > /dev/null; then
		echo "[FAIL] ${i} is not installed" >&2
		exit 1
	else
		[ -z "${MYVERBOSE}" ] || echo "${i} installed"
	fi
done

echo "+KERBEROS LIBRARY VERSIONS"
krb_vers=`${PACKAGEVERSION} ${krbpkgs}`
krb_majvers=$(echo ${krb_vers} | sed "s/\..*$//")
echo "kerberos ${krb_vers} (major ${krb_majvers})"