This file is indexed.

/usr/share/augeas/lenses/dist/tests/test_cachefilesd.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
module Test_Cachefilesd =

   let conf = "
# I am a comment
dir /var/cache/fscache
tAg mycache
brun 10%
bcull 7%
bstop 3%
frun 10%
fcull 7%
fstop 3%
nocull

secctx system_u:system_r:cachefiles_kernel_t:s0
"
   test Cachefilesd.lns get conf = 
    {  }
    { "#comment" = "I am a comment" }
    { "dir" = "/var/cache/fscache" }
    { "tAg" = "mycache" }
    { "brun" = "10%" }
    { "bcull" = "7%" }
    { "bstop" = "3%" }
    { "frun" = "10%" }
    { "fcull" = "7%" }
    { "fstop" = "3%" }
    { "nocull" }
    {  }
    { "secctx" = "system_u:system_r:cachefiles_kernel_t:s0" }