This file is indexed.

/usr/share/sadms-2.0.15/pre/_include-defaults.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
#!/bin/bash
# bbou@ac-toulouse.fr
# 2005-07-10 10:32:10  
# _include-defaults.sh
# script-invoked only

# DIRS
export BINDIR=/bin
export SBINDIR=/sbin
export LIBDIR=/lib
export USRBINDIR=/usr/bin
export USRSBINDIR=/usr/sbin
export USRLIBDIR=/usr/lib
export ETCDIR=/etc
export TMPDIR=/tmp
export SAMBADIR=${ETCDIR}/samba
export PAMDIR=${ETCDIR}/pam.d
export SKELDIR=${ETCDIR}/skel
export X11DIR=${ETCDIR}/X11
export SECDIR=${ETCDIR}/security
export SAMBALIBDIR=${USRLIBDIR}/samba

# KERBEROS
export KINIT=kinit

# CLIB
export LIBC_VERS=`dpkg-query -W -f='${Version}' | cut -d'-' -f1`
export LIBC_VERSMAJ=`echo ${LIBC_VERS} | sed 's/\(.\).*/\1/'`

# INSTALL
INSTALLEXEC=${USRBINDIR}/install
INSTALLFLAGS="-b"
export INSTALL="${INSTALLEXEC} ${INSTALLFLAGS}"