Initial commit

This commit is contained in:
David Seira
2017-07-28 01:43:45 +02:00
commit c6c2a1dfd8
7 changed files with 157 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
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'