This file is indexed.

/usr/share/augeas/lenses/dist/tests/test_rsyncd.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
50
51
52
53
54
55
module Test_rsyncd =

  let conf = "
# A more sophisticated example would be:

uid = nobody
	gid = nobody
use chroot = yes
max connections = 4
syslog facility = local5
pid file = /var/run/rsyncd.pid

[ftp]
  # this is a comment
  path = /var/ftp/./pub
  comment = whole ftp area (approx 6.1 GB)

   [cvs]
  ; comment with semicolon
  path = /data/cvs
  comment = CVS repository (requires authentication)
  auth users = tridge, susan # comment at EOL
  secrets file = /etc/rsyncd.secrets

"

  test Rsyncd.lns get conf =
    { ".anon"
      {}
      { "#comment" = "A more sophisticated example would be:" }
      {}
      { "uid" = "nobody" }
      { "gid" = "nobody" }
      { "use chroot" = "yes" }
      { "max connections" = "4" }
      { "syslog facility" = "local5" }
      { "pid file" = "/var/run/rsyncd.pid" }
      {}
    }
    { "ftp"
      { "#comment" = "this is a comment" }
      { "path" = "/var/ftp/./pub" }
      { "comment" = "whole ftp area (approx 6.1 GB)" }
      {}
    }
    { "cvs"
      { "#comment" = "comment with semicolon" }
      { "path" = "/data/cvs" }
      { "comment" = "CVS repository (requires authentication)" }
      { "auth users" = "tridge, susan"
        { "#comment" = "comment at EOL" }
      }
      { "secrets file" = "/etc/rsyncd.secrets" }
      {}
    }