mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
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 = '''
|
||||
# Ensure a variable exists.
|
||||
# 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
|
||||
# "LEGACY"
|
||||
- cronvar: name="LEGACY" state=absent
|
||||
- cronvar:
|
||||
name: LEGACY
|
||||
state: absent
|
||||
|
||||
# Adds a variable to a file under /etc/cron.d
|
||||
- cronvar: name="LOGFILE" value="/var/log/yum-autoupdate.log"
|
||||
user="root" cron_file=ansible_yum-autoupdate
|
||||
- cronvar:
|
||||
name: LOGFILE
|
||||
value: /var/log/yum-autoupdate.log
|
||||
user: root
|
||||
cron_file: ansible_yum-autoupdate
|
||||
'''
|
||||
|
||||
import os
|
||||
|
|
Loading…
Reference in a new issue