mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-28 13:21:25 -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
|
@ -83,13 +83,20 @@ options:
|
|||
|
||||
EXAMPLES = '''
|
||||
# Install Elasticsearch head plugin
|
||||
- elasticsearch_plugin: state=present name="mobz/elasticsearch-head"
|
||||
- elasticsearch_plugin:
|
||||
state: present
|
||||
name: mobz/elasticsearch-head
|
||||
|
||||
# Install specific version of a plugin
|
||||
- elasticsearch_plugin: state=present name="com.github.kzwang/elasticsearch-image" version="1.2.0"
|
||||
- elasticsearch_plugin:
|
||||
state: present
|
||||
name: com.github.kzwang/elasticsearch-image
|
||||
version: '1.2.0'
|
||||
|
||||
# Uninstall Elasticsearch head plugin
|
||||
- elasticsearch_plugin: state=absent name="mobz/elasticsearch-head"
|
||||
- elasticsearch_plugin:
|
||||
state: absent
|
||||
name: mobz/elasticsearch-head
|
||||
'''
|
||||
|
||||
PACKAGE_STATE_MAP = dict(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue