This file is indexed.

/usr/share/doc/ejabberd/examples/transport-configs/init-scripts/jit is in ejabberd 2.1.11-1ubuntu2.

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
#!/bin/sh
#########################################################
#
#     jit -- script to start JIT.
#
#########################################################

DAEMON=/usr/local/sbin/wpjabber-jit
CONF=/etc/jabber/jit.xml
NAME=wpjabber-jit
HOME=/etc/jabber/
USER=ejabberd

#########################################################

if [ "`/usr/bin/whoami`" != "$USER" ]; then

       echo "You need to be" $USER "user to run this script."
       exit 1
fi

case "$1" in
  debug)
        test -f $DAEMON -a -f $CONF || exit 0
        echo "Starting $NAME in debugging mode."
        $DAEMON -D -H $HOME -c $CONF &
        ;;
  start)
	test -f $DAEMON -a -f $CONF || exit 0
	echo "Starting $NAME."
	$DAEMON -H $HOME -c $CONF &
	;;
  stop)
	echo "Stopping $NAME."
	killall $NAME &
  	;;
  restart|reload)
	$0 stop
        sleep 3
	$0 start
	;;
  *)
	echo "Usage: $0 {debug|start|stop|restart}"
	exit 1
esac