Skip to content

Commit 806c482

Browse files
committed
increase minimum ansible version to 2.11
Signed-off-by: Andrew Twydell <[email protected]>
1 parent c046ac0 commit 806c482

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.travis/build_and_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ if [ "$TRAVIS_PYTHON_VERSION" != "2.7" ]; then
1313
echo "###################### Ansible-lint ######################"
1414
echo "##########################################################"
1515
echo ""
16-
ansible-lint
16+
ansible-lint --profile production
1717
fi
1818

1919
echo ""

docs/source/playbooks.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,8 @@ Module Defaults
177177
---------------
178178

179179
Ansible has a module defaults feature to use the same values during every use of
180-
a task, rather than repeating the values. Here we can set the host url and
181-
credentials of the **cmci_get** task to be the same throughout the playbook.
180+
a module, rather than repeating them everytime. Here we can set the host url and
181+
credentials of the **cmci_get** module to be the same throughout the playbook.
182182

183183
.. code-block:: yaml
184184
module_defaults:
@@ -188,7 +188,7 @@ credentials of the **cmci_get** task to be the same throughout the playbook.
188188
cmci_password: "{{ cmci_password }}"
189189
190190
191-
If you wish to use the same values in **all** CMCI tasks, you can assign them
191+
If you wish to use the same values in **all** CMCI modules, you can assign them
192192
to the group called **cmci_group**.
193193

194194
.. code-block:: yaml

meta/runtime.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
requires_ansible: ">=2.10.7"
2+
requires_ansible: ">=2.11"
33
action_groups:
44
cmci_group:
55
- cmci_action

0 commit comments

Comments
 (0)