mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-04 17:53:10 +00:00
Normalize yaml example (#3425)
This commit is contained in:
committed by
Matt Clay
parent
07d96b62b5
commit
df6200accc
@@ -64,13 +64,22 @@ author: "Richard Isaacson (@risaacson)"
|
||||
|
||||
EXAMPLES = '''
|
||||
# Schedule a command to execute in 20 minutes as root.
|
||||
- at: command="ls -d / > /dev/null" count=20 units="minutes"
|
||||
- at:
|
||||
command: "ls -d / > /dev/null"
|
||||
count: 20
|
||||
units: minutes
|
||||
|
||||
# Match a command to an existing job and delete the job.
|
||||
- at: command="ls -d / > /dev/null" state="absent"
|
||||
- at:
|
||||
command: "ls -d / > /dev/null"
|
||||
state: absent
|
||||
|
||||
# Schedule a command to execute in 20 minutes making sure it is unique in the queue.
|
||||
- at: command="ls -d / > /dev/null" unique=true count=20 units="minutes"
|
||||
- at:
|
||||
command: "ls -d / > /dev/null"
|
||||
unique: true
|
||||
count: 20
|
||||
units: minutes
|
||||
'''
|
||||
|
||||
import os
|
||||
|
||||
Reference in New Issue
Block a user