Trim old style var references

This commit is contained in:
Michael DeHaan 2013-07-19 09:37:19 -04:00
parent 303a8ff563
commit 86ddbb224b

View file

@ -135,14 +135,14 @@ EXAMPLES = '''
register: webpage
- action: fail
when_string: '"AWESOME" not in "${webpage.content}"'
when: 'AWESOME' not in "{{ webpage.content }}"
# Create a JIRA issue.
- action: >
uri url=https://your.jira.example.com/rest/api/2/issue/
method=POST user=your_username password=your_pass
body='$FILE(issue.json)' force_basic_auth=yes
body="{{ lookup('file','issue.json') }}" force_basic_auth=yes
status_code=201 HEADER_Content-Type="application/json"
- action: >
@ -154,7 +154,7 @@ EXAMPLES = '''
# Login to a form based webpage, then use the returned cookie to
# access the app in later tasks.
- action: uri url=https://your.form.based.auth.example.com/dashboard.php
method=GET return_content=yes HEADER_Cookie="${login.set_cookie}"
method=GET return_content=yes HEADER_Cookie="{{login.set_cookie}}"
'''
HAS_HTTPLIB2 = True