This file is indexed.

/etc/cfengine/debian-edu/cf.bind is in debian-edu-config 1.702.

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
#
# Configure DNS setup with bind 
#
directories:
  debian.server::
    # Make sure the members of group 'bind' can write to /etc/bind/:
    /etc/bind mode=2775 owner=root group=bind

editfiles:
  debian.server.installation::
    # Configure ldap2bind for Debian Edu:
    { /etc/bind/named.conf.local
        AppendIfNoSuchLine 'include "/etc/bind/named.conf.ldap2zone";'
    }
    # Disable IPv6 (to silence IPv6 lookup failure messages): 
    { /etc/default/bind9
        BeginGroupIfNoSuchLine 'OPTIONS="-4 -u bind"'
          HashCommentLinesStarting 'OPTIONS='
          LocateLineMatching '#.*OPTIONS=.*'
          InsertLine 'OPTIONS="-4 -u bind"'
        EndGroup
    }
    # Add alias for mails to user bind:
    { /etc/aliases
        AppendIfNoSuchLine 'bind: root'
    }