diff --git a/update_relayx_agent.yml b/update_relayx_agent.yml new file mode 100644 index 0000000..6aa34ab --- /dev/null +++ b/update_relayx_agent.yml @@ -0,0 +1,13 @@ +- name: verified execution + hosts: all + gather_facts: false + + tasks: + - name: download + get_url: + url: https://dl.relayx.cc/upgrade.sh + dest: /tmp/upgrade.sh + mode: '0755' + + - name: run + command: sh /tmp/upgrade.sh \ No newline at end of file