This file is indexed.

/usr/share/augeas/lenses/dist/tests/test_htpasswd.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
(*
Module: Test_Htpasswd
  Provides unit tests and examples for the <Htpasswd> lens.
*)

module Test_Htpasswd =

let htpasswd = "foo-plain:bar
foo-crypt:78YuxG9nnfUCo
foo-md5:$apr1$NqCzyXmd$WLc/Wb35AkC.8tQQB3/Uw/
foo-sha1:{SHA}Ys23Ag/5IOWqZCw9QGaVDdHwH00=
"

test Htpasswd.lns get htpasswd =
  { "foo-plain" = "bar" }
  { "foo-crypt" = "78YuxG9nnfUCo" }
  { "foo-md5" = "$apr1$NqCzyXmd$WLc/Wb35AkC.8tQQB3/Uw/" }
  { "foo-sha1" = "{SHA}Ys23Ag/5IOWqZCw9QGaVDdHwH00=" }