13 lines
254 B
YAML
13 lines
254 B
YAML
- 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 |