diff options
author | Philippe Coval <p.coval@samsung.com> | 2019-10-25 11:35:24 +0200 |
---|---|---|
committer | Philippe Coval <p.coval@samsung.com> | 2019-10-25 11:39:44 +0200 |
commit | 0af4996d08c550144cf368f0fd6e0693294896a0 (patch) | |
tree | 77dc1499b1acb66eabad714e0170dd8920f24a2c /ansible.html.markdown | |
parent | f0eb830ebded612e53eef019776d6573fbc42ab0 (diff) |
[ansible/en]: Fix quotes in command line example
Change-Id: I46fe48764029d243b211cef04f06fdf62ea39219
Forwarded: https://github.com/adambard/learnxinyminutes-docs/pull/3729
Signed-off-by: Philippe Coval <p.coval@samsung.com>
Diffstat (limited to 'ansible.html.markdown')
-rw-r--r-- | ansible.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ansible.html.markdown b/ansible.html.markdown index 41a8c9b5..bfb1406b 100644 --- a/ansible.html.markdown +++ b/ansible.html.markdown @@ -513,7 +513,7 @@ $ # Now we would run the above playbook with roles You can use the jinja in the CLI too ```bash -ansible -m shell -a 'echo {{ my_variable }}` -e 'my_variable=something, playbook_parameter=twentytwo" localhost +ansible -m shell -a 'echo {{ my_variable }}' -e 'my_variable=something, playbook_parameter=twentytwo' localhost ``` In fact - jinja is used to template parts of the playbooks too |