From a8ddf88d0050d3859fb74c9de361c81e4a9e9dee Mon Sep 17 00:00:00 2001 From: shockrah Date: Sun, 28 Nov 2021 15:27:14 -0800 Subject: [PATCH] + Fixing sample HTTP requests These are really only used to verify that ports configs are correct --- playbooks/athens-common/touch.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/playbooks/athens-common/touch.yml b/playbooks/athens-common/touch.yml index 2659d19..e0e348e 100644 --- a/playbooks/athens-common/touch.yml +++ b/playbooks/athens-common/touch.yml @@ -5,10 +5,12 @@ remote_user: ubuntu tasks: - name: Echo - shell: echo 'asdfasdfasdf' + shell: echo 'This playbooks is just testing connectivity' - - name: Sample web request - get_url: - url: https://google.com + - name: Sample HTTP Request + shell: curl http://google.com + + - name: Sample HTTPS Request + shell: curl -k https://gogle.com