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

@ -105,7 +105,7 @@ options:
'''
EXAMPLES = '''
# check for migrations on local node
- name: wait for migrations on local node before proceeding
- name: Wait for migrations on local node before proceeding
aerospike_migrations:
host: "localhost"
connect_timeout: 2000
@ -116,7 +116,7 @@ EXAMPLES = '''
# example playbook:
---
- name: upgrade aerospike
- name: Upgrade aerospike
hosts: all
become: true
serial: 1
@ -128,7 +128,7 @@ EXAMPLES = '''
- python-pip
- python-setuptools
state: latest
- name: setup aerospike
- name: Setup aerospike
pip:
name: aerospike
# check for migrations every (sleep_between_checks)
@ -137,7 +137,7 @@ EXAMPLES = '''
# nodes not returning data, or other reasons.
# Maximum runtime before giving up in this case will be:
# Tries Limit * Sleep Between Checks * delay * retries
- name: wait for aerospike migrations
- name: Wait for aerospike migrations
aerospike_migrations:
local_only: True
sleep_between_checks: 1
@ -151,10 +151,10 @@ EXAMPLES = '''
changed_when: false
delay: 60
retries: 120
- name: another thing
- name: Another thing
shell: |
echo foo
- name: reboot
- name: Reboot
reboot:
'''