This file is indexed.

/usr/share/augeas/lenses/dist/tests/test_netmasks.aug is in augeas-lenses 1.2.0-0ubuntu1.3.

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
(* Test for netmasks lens *)
module Test_netmasks =

  let conf = "# The netmasks file associates Internet Protocol (IP) address
# masks with IP network numbers.
#

192.168.1.0	255.255.255.0
10.0.0.0 255.0.0.0
"

  test Netmasks.lns get conf =
    { "#comment" = "The netmasks file associates Internet Protocol (IP) address" }
    { "#comment" = "masks with IP network numbers." }
    { }
    { }
    { "1"
        { "network" = "192.168.1.0" }
        { "netmask" = "255.255.255.0" } }
    { "2"
        { "network" = "10.0.0.0" }
        { "netmask" = "255.0.0.0" } }

(* Local Variables: *)
(* mode: caml       *)
(* End:             *)