This file is indexed.

/etc/init.d/slpd is in slpd 1.2.1-10+deb8u1.

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
55
56
57
#! /bin/sh
### BEGIN INIT INFO
# Provides:          slpd
# Required-Start:    $remote_fs $syslog
# Required-Stop:     $remote_fs $syslog
# X-Start-Before:    slapd
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: OpenSLP sysv init script
# Description:       OpenSLP is a Service Location Protocol daemon
### END INIT INFO

NAME=slpd
DESC="OpenSLP server"
DAEMON=/usr/sbin/$NAME
PIDFILE=/var/run/${NAME}.pid

test -f $DAEMON || exit 0

. /lib/lsb/init-functions

case "$1" in
  start)
	log_daemon_msg "Starting $DESC" "$NAME"
	start-stop-daemon --start --quiet --pidfile $PIDFILE \
	                  --exec $DAEMON
	log_end_msg $?
	;;
  stop)
	log_daemon_msg "Stopping $DESC" "$NAME"
	start-stop-daemon --stop --quiet --pidfile $PIDFILE \
	                  --exec $DAEMON
	log_end_msg $?
	;;
  reload)
	log_action_begin_msg "Reloading $DESC configuration"
	start-stop-daemon --stop --quiet --pidfile $PIDFILE \
	                  --exec $DAEMON --signal HUP
	log_action_end_msg $?
  ;;
  restart|force-reload)
	log_action_msg "Restarting $DESC"
	$0 stop
	$0 start
	;;
  status)
	status_of_proc $DAEMON $NAME
	exit $?
	;;
  *)
	N=/etc/init.d/$NAME
	echo "Usage: $N {start|stop|restart|reload|force-reload|status}" >&2
	exit 1
	;;
esac

exit 0