This file is indexed.

/etc/init/edubuntu-server.conf is in edubuntu-server-host 14.02.2.

This file is owned by root:root, with mode 0o644.

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
# edubuntu-server - Setup the network and start Edubuntu Server
#
# This job is started at boot time and manages all of the
# Edubuntu server containers and the network

description     "Edubuntu Server"
author          "Stéphane Graber <stgraber@ubuntu.com>"

start on filesystem or runlevel [2345]
stop on runlevel [!2345]

pre-start script
    [ -f /etc/edubuntu-server/edubuntu-server.conf ] || stop
    exec edubuntu-server-manage start
end script

post-stop script
    exec edubuntu-server-manage stop
end script