mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-21 16:39:08 -07:00
Use native YAML - Packaging (#3588)
* Fix kibana * More native YAML * More native YAML * More native YAML * More native YAML. Now only languages/ is missing * Use native yaml sintax for packaging/languages as well * Some more and quote fixes * Fix wrong grouping
This commit is contained in:
parent
d344d7863a
commit
06a8f1d79b
34 changed files with 589 additions and 186 deletions
|
@ -52,11 +52,27 @@ options:
|
|||
notes: []
|
||||
'''
|
||||
EXAMPLES = '''
|
||||
- opkg: name=foo state=present
|
||||
- opkg: name=foo state=present update_cache=yes
|
||||
- opkg: name=foo state=absent
|
||||
- opkg: name=foo,bar state=absent
|
||||
- opkg: name=foo state=present force=overwrite
|
||||
- opkg:
|
||||
name: foo
|
||||
state: present
|
||||
|
||||
- opkg:
|
||||
name: foo
|
||||
state: present
|
||||
update_cache: yes
|
||||
|
||||
- opkg:
|
||||
name: foo
|
||||
state: absent
|
||||
|
||||
- opkg:
|
||||
name: foo,bar
|
||||
state: absent
|
||||
|
||||
- opkg:
|
||||
name: foo
|
||||
state: present
|
||||
force: overwrite
|
||||
'''
|
||||
|
||||
import pipes
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue