docs: cron: fix for example raises a warning. (#56701)
The following one: The value 2 (type int) in a string field was converted to '2'pull/4420/head
parent
124400f319
commit
64b30b172e
|
@ -185,9 +185,9 @@ EXAMPLES = r'''
|
||||||
- name: Creates a cron file under /etc/cron.d
|
- name: Creates a cron file under /etc/cron.d
|
||||||
cron:
|
cron:
|
||||||
name: yum autoupdate
|
name: yum autoupdate
|
||||||
weekday: 2
|
weekday: "2"
|
||||||
minute: 0
|
minute: "0"
|
||||||
hour: 12
|
hour: "12"
|
||||||
user: root
|
user: root
|
||||||
job: "YUMINTERACTIVE=0 /usr/sbin/yum-autoupdate"
|
job: "YUMINTERACTIVE=0 /usr/sbin/yum-autoupdate"
|
||||||
cron_file: ansible_yum-autoupdate
|
cron_file: ansible_yum-autoupdate
|
||||||
|
|
Loading…
Reference in New Issue