From 8dc3b60d0f4933a73c2293c4a0bc1084deb3315f Mon Sep 17 00:00:00 2001 From: Fabio Alessandro Locati Date: Thu, 15 Dec 2016 19:38:02 +0100 Subject: [PATCH] Remove unneeded quotes - windows/win_uri.py (#18828) --- lib/ansible/modules/windows/win_uri.py | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/lib/ansible/modules/windows/win_uri.py b/lib/ansible/modules/windows/win_uri.py index f9e923dfafe..3edd2f7928f 100644 --- a/lib/ansible/modules/windows/win_uri.py +++ b/lib/ansible/modules/windows/win_uri.py @@ -71,31 +71,24 @@ author: Corwin Brown (@blakfeld) """ EXAMPLES = """ -# Send a GET request and store the output: ---- - name: Perform a GET and Store Output win_uri: - url: http://www.somesite.com/myendpoint + url: http://example.com/endpoint register: http_output # Set a HOST header to hit an internal webserver: ---- - name: Hit a Specific Host on the Server win_uri: - url: http://my.internal.server.com + url: http://example.com method: GET headers: - host: "www.somesite.com" + host: www.somesite.com -# Do a HEAD request on an endpoint ---- - name: Perform a HEAD on an Endpoint win_uri: - url: http://www.somesite.com + url: http://www.example.com method: HEAD -# Post a body to an endpoint ---- - name: POST a Body to an Endpoint win_uri: url: http://www.somesite.com