This file is indexed.

/usr/share/doc/cdist/html/_sources/man7/cdist-type__cron.txt is in cdist-doc 4.4.1-1.

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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
cdist-type__cron(7)
===================

NAME
----
cdist-type__cron - Installs and manages cron jobs


DESCRIPTION
-----------
This cdist type allows you to manage entries in a users crontab.


REQUIRED PARAMETERS
-------------------
user
   The user who's crontab is edited
command
   The command to run.


OPTIONAL PARAMETERS
-------------------
state
   Either present or absent. Defaults to present.
minute
   See crontab(5). Defaults to *
hour
   See crontab(5). Defaults to *
day_of_month
   See crontab(5). Defaults to *
month
   See crontab(5). Defaults to *
day_of_week
   See crontab(5). Defaults to *
raw
   Take whatever the user has given instead of time and date fields.
   If given, all other time and date fields are ignored.
   Can for example be used to specify cron EXTENSIONS like reboot, yearly etc.
   See crontab(5) for the extensions if any that your cron implementation
   implements.
raw_command
   Take whatever the user has given in the command and ignore everything else.
   If given, the command will be added to crontab.
   Can for example be used to define variables like SHELL or MAILTO.


EXAMPLES
--------

.. code-block:: sh

    # run Monday to Saturday at 23:15
    __cron some-id --user root --command "/path/to/script" \
       --hour 23 --minute 15 --day_of_week 1-6

    # run on reboot
    __cron some-id --user root --command "/path/to/script" \
       --raw @reboot

    # remove cronjob
    __cron some-id --user root --command "/path/to/script" --state absent

    # define default shell
    __cron some-id --user root --raw_command --command "SHELL=/bin/bash" \
       --state present


SEE ALSO
--------
:strong:`crontab`\ (5)


AUTHORS
-------
Steven Armstrong <steven-cdist--@--armstrong.cc>


COPYING
-------
Copyright \(C) 2011-2013 Steven Armstrong. You can redistribute it
and/or modify it under the terms of the GNU General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.