This file is indexed.

/etc/init.d/fam is in fam 2.7.0-17.1.

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
52
53
54
#! /bin/sh
### BEGIN INIT INFO
# Provides:          fam
# Required-Start:    $remote_fs $portmap
# Required-Stop:     $remote_fs $portmap
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: File Alteration Monitor
# Description:       Debian init script for File Alteration Monitor
### END INIT INFO

PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON="/usr/sbin/famd"
NAME="FAM"
DESC="file alteration monitor"

FAMOPTS="-T 0"

test -x $DAEMON || exit 0

# Stop if we are running from inetd
egrep -qs "^(sgi_fam|391002)" /etc/inetd.conf


. /lib/lsb/init-functions
set -e

case "$1" in
  start)
        status_of_proc $DAEMON $NAME > /dev/null && exit 0
	log_daemon_msg "Starting $DESC" "$NAME"
	start-stop-daemon --start --quiet --exec $DAEMON -- $FAMOPTS < /dev/null
	log_end_msg $?
	;;
  stop)
	log_daemon_msg "Stopping $DESC" "$NAME"
	start-stop-daemon --stop --oknodo --quiet --exec $DAEMON
	log_end_msg $?
	;;
  restart|force-reload)
	$0 stop
	sleep 1
	$0 start
	;;
  status)
	status_of_proc $DAEMON $NAME
	;;
  *)
	echo "Usage: $0 {start|stop|restart|force-reload|status}" >&2
	exit 1
	;;
esac

exit 0