This file is indexed.

/usr/share/augeas/lenses/dist/tests/test_bootconf.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
(*
Module: Test_BootConf
  Provides unit tests for the <BootConf> lens.
*)

module Test_bootconf =

test BootConf.boot get "boot /bsd -s\n" =
  { "boot"
    { "image" = "/bsd" }
    { "arg" = "-s" } }

test BootConf.echo get "echo 42\n" =
  { "echo" = "42" }

test BootConf.ls get "ls /\n" = 
  { "ls" = "/" }

test BootConf.ls get "ls //\n" = 
  { "ls" = "//" }

test BootConf.ls get "ls /some/path/\n" = 
  { "ls" = "/some/path/" }

test BootConf.machine get "machine diskinfo\n" =
  { "machine"
    { "diskinfo" } }

test BootConf.machine get "machine comaddr 0xdeadbeef\n" =
  { "machine"
    { "comaddr" = "0xdeadbeef" } } 

test BootConf.set get "set tty com0\n" =
  { "set"
    { "tty" = "com0" } }

test BootConf.single_command get "help\n" =
  { "help" }

test BootConf.stty get "stty /dev/cuaU0 115200\n" =
  { "stty"
    { "device" = "/dev/cuaU0" }
    { "speed" = "115200" } }

test BootConf.stty get "stty /dev/cuaU0\n" =
  { "stty"
    { "device" = "/dev/cuaU0" } }