Commit 08d3512e by Bertrand Marron

Stop depending on deb name in splunk download URL

When downloading the deb from splunk’s website, it doesn’t have that
format.
See: http://www.splunk.com/download/universalforwarder
parent a5e06382
...@@ -18,7 +18,7 @@ splunk_role_name: 'splunk' ...@@ -18,7 +18,7 @@ splunk_role_name: 'splunk'
SPLUNKFORWARDER_SERVER: 'localhost:9997' SPLUNKFORWARDER_SERVER: 'localhost:9997'
SPLUNKFORWARDER_PACKAGE_LOCATION: !!null SPLUNKFORWARDER_PACKAGE_URL: !!null
SPLUNKFORWARDER_DEB: !!null SPLUNKFORWARDER_DEB: !!null
SPLUNKFORWARDER_PASSWORD: !!null SPLUNKFORWARDER_PASSWORD: !!null
......
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
- name: download the splunk deb - name: download the splunk deb
get_url: > get_url: >
dest="/tmp/{{SPLUNKFORWARDER_DEB}}" dest="/tmp/{{SPLUNKFORWARDER_DEB}}"
url="{{SPLUNKFORWARDER_PACKAGE_LOCATION}}{{SPLUNKFORWARDER_DEB}}" url="{{SPLUNKFORWARDER_PACKAGE_URL}}"
register: download_deb register: download_deb
- name: install splunk forwarder - name: install splunk forwarder
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment