This file is indexed.

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

  let conf = "@audio - rtprio 99
ftp hard nproc /ftp
* soft core 0
"

  test Limits.lns get conf =
    { "domain" = "@audio"
      { "type"  = "-" }
      { "item"  = "rtprio" }
      { "value" = "99" } }
    { "domain" = "ftp"
      { "type" = "hard" }
      { "item" = "nproc" }
      { "value" = "/ftp" } }
    { "domain" = "*"
      { "type" = "soft" }
      { "item" = "core" }
      { "value" = "0" } }

  test Limits.lns put conf after
    insa "domain" "domain[last()]" ;
    set "domain[last()]" "*" ;
    set "domain[last()]/type" "-" ;
    set "domain[last()]/item" "nofile" ;
    set "domain[last()]/value" "4096"
  = "@audio - rtprio 99
ftp hard nproc /ftp
* soft core 0
* - nofile 4096\n"