1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-04-13 15:35:08 +00:00

Fix examples formatting (#345)

This commit is contained in:
Andrew Klychkov 2020-05-16 16:07:51 +03:00 committed by GitHub
parent 31ba39cac4
commit a7c830f49d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
148 changed files with 330 additions and 334 deletions

View file

@ -81,7 +81,7 @@ EXAMPLES = '''
state: absent
register: policy
- name: debug
- name: Debug
debug:
var: policy
'''

View file

@ -86,7 +86,7 @@ EXAMPLES = '''
state: present
register: policy
- name: debug
- name: Debug
debug: var=policy
---
@ -102,7 +102,7 @@ EXAMPLES = '''
state: absent
register: policy
- name: debug
- name: Debug
debug: var=policy
'''

View file

@ -76,7 +76,7 @@ EXAMPLES = '''
state: present
register: clc
- name: debug
- name: Debug
debug:
var: clc
@ -95,7 +95,7 @@ EXAMPLES = '''
state: absent
register: clc
- name: debug
- name: Debug
debug:
var: clc
'''

View file

@ -69,7 +69,7 @@ notes:
EXAMPLES = '''
# Note - You must set the CLC_V2_API_USERNAME And CLC_V2_API_PASSWD Environment variables before running these examples
- name: set the cpu count to 4 on a server
- name: Set the cpu count to 4 on a server
clc_modify_server:
server_ids:
- UC1TESTSVR01
@ -77,7 +77,7 @@ EXAMPLES = '''
cpu: 4
state: present
- name: set the memory to 8GB on a server
- name: Set the memory to 8GB on a server
clc_modify_server:
server_ids:
- UC1TESTSVR01
@ -85,7 +85,7 @@ EXAMPLES = '''
memory: 8
state: present
- name: set the anti affinity policy on a server
- name: Set the anti affinity policy on a server
clc_modify_server:
server_ids:
- UC1TESTSVR01
@ -93,7 +93,7 @@ EXAMPLES = '''
anti_affinity_policy_name: 'aa_policy'
state: present
- name: remove the anti affinity policy on a server
- name: Remove the anti affinity policy on a server
clc_modify_server:
server_ids:
- UC1TESTSVR01
@ -101,7 +101,7 @@ EXAMPLES = '''
anti_affinity_policy_name: 'aa_policy'
state: absent
- name: add the alert policy on a server
- name: Add the alert policy on a server
clc_modify_server:
server_ids:
- UC1TESTSVR01
@ -109,7 +109,7 @@ EXAMPLES = '''
alert_policy_name: 'alert_policy'
state: present
- name: remove the alert policy on a server
- name: Remove the alert policy on a server
clc_modify_server:
server_ids:
- UC1TESTSVR01
@ -117,7 +117,7 @@ EXAMPLES = '''
alert_policy_name: 'alert_policy'
state: absent
- name: set the memory to 16GB and cpu to 8 core on a lust if servers
- name: Ret the memory to 16GB and cpu to 8 core on a lust if servers
clc_modify_server:
server_ids:
- UC1TESTSVR01

View file

@ -72,7 +72,7 @@ EXAMPLES = '''
state: present
register: clc
- name: debug
- name: Debug
debug:
var: clc
@ -89,7 +89,7 @@ EXAMPLES = '''
state: absent
register: clc
- name: debug
- name: Debug
debug:
var: clc
'''