This file is indexed.

/etc/init/isc-dhcp-server.conf is in isc-dhcp-server 4.3.3-5ubuntu12.

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
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
description "ISC DHCP IPv4 server"
author "Stéphane Graber <stgraber@ubuntu.com>"

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

pre-start script
    if [ ! -f /etc/default/isc-dhcp-server ]; then
        echo "/etc/default/isc-dhcp-server does not exist! - Aborting..."
        echo "Run 'dpkg-reconfigure isc-dhcp-server' to fix the problem."
        stop
        exit 0
    fi
    . /etc/default/isc-dhcp-server

    if [ -f /etc/ltsp/dhcpd.conf ]; then
        CONFIG_FILE=/etc/ltsp/dhcpd.conf
    else
        CONFIG_FILE=/etc/dhcp/dhcpd.conf
    fi
    if [ ! -f $CONFIG_FILE ]; then
        echo "$CONFIG_FILE does not exist! - Aborting..."
        echo "Please create and configure $CONFIG_FILE to fix the problem."
        stop
        exit 0
    fi

    if ! dhcpd -user dhcpd -group dhcpd -t -q -4 -cf $CONFIG_FILE > /dev/null 2>&1; then
        echo "dhcpd self-test failed. Please fix the config file."
        echo "The error was: "
        dhcpd -user dhcpd -group dhcpd -t -4 -cf $CONFIG_FILE
        stop
        exit 0
    fi
end script

respawn
script
    if [ -f /etc/ltsp/dhcpd.conf ]; then
        CONFIG_FILE=/etc/ltsp/dhcpd.conf
    else
        CONFIG_FILE=/etc/dhcp/dhcpd.conf
    fi

    . /etc/default/isc-dhcp-server

    # Allow dhcp server to write lease and pid file as 'dhcpd' user
    mkdir -p /var/run/dhcp-server
    chown dhcpd:dhcpd /var/run/dhcp-server

    # Create the initial leases file if it doesn't exist.
    [ -e /var/lib/dhcp/dhcpd.leases ] || touch /var/lib/dhcp/dhcpd.leases;

    exec dhcpd -user dhcpd -group dhcpd -f -q -4 -pf /run/dhcp-server/dhcpd.pid -cf $CONFIG_FILE $INTERFACES
end script