diff options
author | Divay Prakash <divayprakash@users.noreply.github.com> | 2020-01-24 19:55:12 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-24 19:55:12 +0530 |
commit | 8e18975548d40ab0de6924ffac38127d7f01fecd (patch) | |
tree | 5c3c58ed09201c56e2a6a0c6a7bf666d56d005ee /ansible.html.markdown | |
parent | 4632eb7482253b668526fa6a77291644cb1a8bb2 (diff) | |
parent | 0af4996d08c550144cf368f0fd6e0693294896a0 (diff) |
Merge pull request #3729 from TizenTeam/sandbox/rzr/review/master
[ansible/en]: Fix quotes in command line example
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 |