This file is indexed.

/usr/share/augeas/lenses/dist/tests/test_mcollective.aug is in augeas-lenses 1.4.0-0ubuntu1.

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
(*
Module: Test_MCollective
  Provides unit tests and examples for the <MCollective> lens.
*)

module Test_MCollective =

let conf = "topicprefix = /topic/
main_collective = mcollective
collectives = mcollective
libdir = /usr/libexec/mcollective
logger_type = console
loglevel = warn

# Plugins
securityprovider = psk
plugin.psk = unset

connector = stomp
plugin.stomp.host = localhost
plugin.stomp.port = 61613
plugin.stomp.user = mcollective
plugin.stomp.password = secret

# Facts
factsource = yaml # bla
plugin.yaml=/etc/mcollective/facts.yaml
"

test MCollective.lns get conf =
  { "topicprefix" = "/topic/" }
  { "main_collective" = "mcollective" }
  { "collectives" = "mcollective" }
  { "libdir" = "/usr/libexec/mcollective" }
  { "logger_type" = "console" }
  { "loglevel" = "warn" }
  { }
  { "#comment" = "Plugins" }
  { "securityprovider" = "psk" }
  { "plugin.psk" = "unset" }
  { }
  { "connector" = "stomp" }
  { "plugin.stomp.host" = "localhost" }
  { "plugin.stomp.port" = "61613" }
  { "plugin.stomp.user" = "mcollective" }
  { "plugin.stomp.password" = "secret" }
  { }
  { "#comment" = "Facts" }
  { "factsource" = "yaml"
    { "#comment" = "bla" }
  }
  { "plugin.yaml" = "/etc/mcollective/facts.yaml" }