-
Notifications
You must be signed in to change notification settings - Fork 23
/
pillar.example
33 lines (33 loc) · 944 Bytes
/
pillar.example
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
cron:
enabled: True # Default
lookup: # Not needed, just if you want to use another cron program
pkg: 'cronie'
tasks:
task1:
type: 'present' # Default
name: 'echo test > /tmp/test'
user: 'root'
minute: 0
hour: 0
daymonth: 7
month: 1
dayweek: 6
comment: 'comment1'
task2:
type: 'absent' # To remove that crontask
name: 'echo task2 > /tmp/test2'
user: 'root'
minute: 'random'
hour: 1
task3:
type: 'absent'
name: 'echo task3 > /tmp/test3'
user: 'root'
special: '@hourly'
comment: 'comment3'
task4:
type: 'present' # run every 5 minutes
user: 'root'
minute: '*/5'
hour: '*'
comment: 'comment4'