summaryrefslogtreecommitdiff
path: root/network/basics/uri.py
diff options
context:
space:
mode:
Diffstat (limited to 'network/basics/uri.py')
-rw-r--r--network/basics/uri.py20
1 files changed, 12 insertions, 8 deletions
diff --git a/network/basics/uri.py b/network/basics/uri.py
index afff0875..c66ce399 100644
--- a/network/basics/uri.py
+++ b/network/basics/uri.py
@@ -153,20 +153,24 @@ author: "Romeo Theriault (@romeotheriault)"
'''
EXAMPLES = '''
-# Check that you can connect (GET) to a page and it returns a status 200
-- uri: url=http://www.example.com
+- name: Check that you can connect (GET) to a page and it returns a status 200
+ uri:
+ url: 'http://www.example.com'
# Check that a page returns a status 200 and fail if the word AWESOME is not
# in the page contents.
-- action: uri url=http://www.example.com return_content=yes
+- uri:
+ url: http://www.example.com
+ return_content: yes
register: webpage
-- action: fail
+- name: Fail if AWESOME is not in the page content
+ fail:
when: "'AWESOME' not in webpage.content"
-# Create a JIRA issue
-- uri:
+- name: Create a JIRA issue
+ uri:
url: https://your.jira.example.com/rest/api/2/issue/
method: POST
user: your_username
@@ -193,8 +197,8 @@ EXAMPLES = '''
return_content: yes
HEADER_Cookie: "{{login.set_cookie}}"
-# Queue build of a project in Jenkins:
-- uri:
+- name: Queue build of a project in Jenkins
+ uri:
url: "http://{{ jenkins.host }}/job/{{ jenkins.job }}/build?token={{ jenkins.token }}"
method: GET
user: "{{ jenkins.user }}"