mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-03 06:49:10 -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
|
@ -48,13 +48,19 @@ author: "berenddeboer (@berenddeboer)"
|
|||
|
||||
EXAMPLES = '''
|
||||
# Install package foo
|
||||
- portinstall: name=foo state=present
|
||||
- portinstall:
|
||||
name: foo
|
||||
state: present
|
||||
|
||||
# Install package security/cyrus-sasl2-saslauthd
|
||||
- portinstall: name=security/cyrus-sasl2-saslauthd state=present
|
||||
- portinstall:
|
||||
name: security/cyrus-sasl2-saslauthd
|
||||
state: present
|
||||
|
||||
# Remove packages foo and bar
|
||||
- portinstall: name=foo,bar state=absent
|
||||
- portinstall:
|
||||
name: foo,bar
|
||||
state: absent
|
||||
'''
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue