This file is indexed.

/usr/share/augeas/lenses/dist/tests/test_exports.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
module Test_exports = 

let s = "/local 172.31.0.0/16(rw,sync) \t

/home 172.31.0.0/16(rw,root_squash,sync) @netgroup(rw) *.example.com
# Yes, we export /tmp
/tmp 172.31.0.0/16(rw,root_squash,sync,)
/local2 somehost(rw,sync)
/local3 some-host(rw,sync)
/local3 an-other-host(rw,sync)
/local4 2000:123:456::/64(rw)
"

test Exports.lns get s =
  { "dir" = "/local"
      { "client" = "172.31.0.0/16"
          { "option" = "rw" }
          { "option" = "sync" } } }
  { }
  { "dir" = "/home"
      { "client" = "172.31.0.0/16"
          { "option" = "rw"}
          { "option" = "root_squash" }
          { "option" = "sync" } }
      { "client" = "@netgroup"
          { "option" = "rw" } }
      { "client" = "*.example.com" } }
  { "#comment" = "Yes, we export /tmp" }
  { "dir" = "/tmp"
      { "client" = "172.31.0.0/16"
          { "option" = "rw" }
          { "option" = "root_squash" }
          { "option" = "sync" }
          { "option" = "" } } }
  { "dir" = "/local2"
      { "client" = "somehost"
          { "option" = "rw" }
          { "option" = "sync" } } }
  { "dir" = "/local3"
      { "client" = "some-host"
          { "option" = "rw" }
          { "option" = "sync" } } }
  { "dir" = "/local3"
      { "client" = "an-other-host"
          { "option" = "rw" }
          { "option" = "sync" } } }
  { "dir" = "/local4"
      { "client" = "2000:123:456::/64"
          { "option" = "rw" } } }