Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ansible/ansible-examples.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenzo Manacorda <lorenzo.manacorda@gmail.com>2015-04-29 18:06:47 +0300
committerLorenzo Manacorda <lorenzo.manacorda@gmail.com>2015-04-29 18:06:47 +0300
commit29b3a00657511e0683fbc6c036bab51159446eaa (patch)
tree47ff766d4aaeee50dc1298684b7646bd26fb799b /language_features
parent97a4a31e3869c9b4e8015f5e0903cd6df2a4deff (diff)
fix typo
Diffstat (limited to 'language_features')
-rw-r--r--language_features/register_logic.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/language_features/register_logic.yml b/language_features/register_logic.yml
index 6e1e68e..083ad84 100644
--- a/language_features/register_logic.yml
+++ b/language_features/register_logic.yml
@@ -31,12 +31,12 @@
when: motd_result.stdout.find('hi') != -1
# you can use 'stdout_lines' to loop over the registered output lines
- - name: motd lines mathing 'hi'
+ - name: motd lines matching 'hi'
shell: echo "{{ item }}"
with_items: motd_result.stdout_lines
# you can also split 'stdout' yourself
- - name: motd lines mathing 'hi'
+ - name: motd lines matching 'hi'
shell: echo "{{ item }}"
with_items: motd_result.stdout.split('\n')