spelling: temaplte -> template (#55665)

Correct a common mis-spelling of 'template' including in the return
value of the lib/ansible/modules/cloud/cloudstack/cs_template.py
module.
This commit is contained in:
Lars Kellogg-Stedman
2019-04-24 01:06:09 -04:00
committed by Martin Krizek
parent e77260a4fb
commit 35fdae7485
4 changed files with 6 additions and 6 deletions

View File

@@ -206,7 +206,7 @@
when: bare|bool
- name: assert that the bad nested conditional did run since non bare 'string' is untempalted but 'trueish'
- name: assert that the bad nested conditional did run since non bare 'string' is untemplated but 'trueish'
assert:
that:
- result is skipped

View File

@@ -9,11 +9,11 @@
- name: Get output template contents
slurp:
path: "{{ output_dir }}/vaulted_template.out"
register: vaulted_tempalte_out
register: vaulted_template_out
- debug:
msg: "{{ vaulted_tempalte_out.content|b64decode }}"
msg: "{{ vaulted_template_out.content|b64decode }}"
- assert:
that:
- vaulted_tempalte_out.content|b64decode == 'here_i_am\n'
- vaulted_template_out.content|b64decode == 'here_i_am\n'