test(pillar): add test for `commented` and clarify each test

This commit is contained in:
Imran Iqbal 2019-10-17 19:28:32 +01:00
parent a0f891e012
commit 3d0dcb2e43
No known key found for this signature in database
GPG Key ID: 6D8629439D2B7819
1 changed files with 13 additions and 0 deletions

View File

@ -4,6 +4,7 @@
cron:
enabled: true # Default
tasks:
# Test all of the available options
task1:
type: present # Default
name: echo test > /tmp/test
@ -14,18 +15,22 @@ cron:
month: 1
dayweek: 6
comment: comment1
commented: false
# Test `type: absent`
task2:
type: absent # To remove that crontask
name: echo task2 > /tmp/test2
user: root
minute: random
hour: 1
# Test `special`
task3:
type: present
name: echo task3 > /tmp/test3
user: root
special: '@hourly'
comment: comment3
# Test `*`
task4:
type: present # run every 5 minutes
name: echo task4 > /tmp/test4
@ -33,3 +38,11 @@ cron:
minute: '*/5'
hour: '*'
comment: comment4
# Test `commented: true` and `minute: random`
task5:
type: present
name: echo task5 > /tmp/test5
user: root
minute: random
hour: 1
commented: true