Use native YAML (#3439)
This commit is contained in:
parent
0a338a11c2
commit
be834293ed
1 changed files with 11 additions and 4 deletions
|
@ -89,15 +89,22 @@ author: Doug Luce
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
# Ensure a variable exists.
|
# Ensure a variable exists.
|
||||||
# Creates an entry like "EMAIL=doug@ansibmod.con.com"
|
# Creates an entry like "EMAIL=doug@ansibmod.con.com"
|
||||||
- cronvar: name="EMAIL" value="doug@ansibmod.con.com"
|
- cronvar:
|
||||||
|
name: EMAIL
|
||||||
|
value: doug@ansibmod.con.com
|
||||||
|
|
||||||
# Make sure a variable is gone. This will remove any variable named
|
# Make sure a variable is gone. This will remove any variable named
|
||||||
# "LEGACY"
|
# "LEGACY"
|
||||||
- cronvar: name="LEGACY" state=absent
|
- cronvar:
|
||||||
|
name: LEGACY
|
||||||
|
state: absent
|
||||||
|
|
||||||
# Adds a variable to a file under /etc/cron.d
|
# Adds a variable to a file under /etc/cron.d
|
||||||
- cronvar: name="LOGFILE" value="/var/log/yum-autoupdate.log"
|
- cronvar:
|
||||||
user="root" cron_file=ansible_yum-autoupdate
|
name: LOGFILE
|
||||||
|
value: /var/log/yum-autoupdate.log
|
||||||
|
user: root
|
||||||
|
cron_file: ansible_yum-autoupdate
|
||||||
'''
|
'''
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
|
Loading…
Reference in a new issue