This file is indexed.

/usr/share/augeas/lenses/dist/tests/test_stunnel.aug is in augeas-lenses 0.10.0-0ubuntu4.

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
module Test_stunnel =
    let conf ="; Test stunnel-like config file
; Foo bar baz
cert = /path/1
key = /path/2

sslVersion = SSLv3

; another comment

[service1]
accept = 49999
connect = servicedest:1234

[service2]
accept = 1234
"

    test Stunnel.lns get conf =
        { ".anon"
            { "#comment" = "Test stunnel-like config file" }
            { "#comment" = "Foo bar baz" }
            { "cert" = "/path/1" }
            { "key" = "/path/2" }
            {}
            { "sslVersion" = "SSLv3" }
            {}
            { "#comment" = "another comment" }
            {}
        }
        { "service1"
            { "accept" = "49999" }
            { "connect" = "servicedest:1234" }
            {}
        }
        { "service2"
            { "accept" = "1234" }
        }