This file is indexed.

/usr/share/augeas/lenses/dist/tests/test_cron.aug is in augeas-lenses 1.10.1-2.

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
module Test_cron =

   let conf = "# /etc/cron.d/anacron: crontab entries for the anacron package

SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
CRON_TZ=America/Los_Angeles
MAILTO=user1@tld1,user2@tld2;user3@tld3

	30 7      * * *   root	test -x /etc/init.d/anacron && /usr/sbin/invoke-rc.d anacron start >/dev/null
  00 */3    15-25/2 May 1-5   user   somecommand
  00 */3    15-25/2 May mon-tue   user   somecommand
# a comment
@yearly				foo    a command\n"

   test Cron.lns get conf =
      { "#comment" = "/etc/cron.d/anacron: crontab entries for the anacron package" }
      {}
      { "SHELL" = "/bin/sh" }
      { "PATH"  = "/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin" }
      { "CRON_TZ" = "America/Los_Angeles" }
      { "MAILTO" = "user1@tld1,user2@tld2;user3@tld3" }
      {}
      { "entry" = "test -x /etc/init.d/anacron && /usr/sbin/invoke-rc.d anacron start >/dev/null"
          { "time"
              { "minute"       = "30"   }
              { "hour"         = "7"    }
              { "dayofmonth"   = "*"    }
              { "month"        = "*"    }
              { "dayofweek"    = "*"    } }
          { "user"         = "root" } }
      { "entry" = "somecommand"
          { "time"
              { "minute"       = "00"      }
              { "hour"         = "*/3"     }
              { "dayofmonth"   = "15-25/2" }
              { "month"        = "May"     }
              { "dayofweek"    = "1-5"     } }
          { "user"         = "user"    } }
      { "entry" = "somecommand"
          { "time"
              { "minute"       = "00"      }
              { "hour"         = "*/3"     }
              { "dayofmonth"   = "15-25/2" }
              { "month"        = "May"     }
              { "dayofweek"    = "mon-tue"     } }
          { "user"         = "user"    } }
      { "#comment" = "a comment" }
      { "entry" = "a command"
          { "schedule"     = "yearly"  }
          { "user"         = "foo"     } }