Commit 8837f4ad by ansible

no message

1 parent 15a08164
Showing with 8 additions and 2 deletions
...@@ -3,6 +3,8 @@ ...@@ -3,6 +3,8 @@
become: true become: true
tasks: tasks:
- name: Move MQTT to Working Folder - name: Move MQTT to Working Folder
command: mv /tmp/source/message.3.0.2.tar.gz /opt/stack/. command: cp /tmp/source/message.3.0.2.tar.gz /opt/stack/message.3.0.2.tar.gz
- name: Extract MQTT - name: Extract MQTT
command: tar -zxvf /opt/stack/message.3.0.2.tar.gz command: tar -zxvf /opt/stack/message.3.0.2.tar.gz
- name: Delete File
command: rm /opt/stack/message.3.0.2.tar.gz
\ No newline at end of file
...@@ -3,6 +3,8 @@ ...@@ -3,6 +3,8 @@
become: true become: true
tasks: tasks:
- name: Move WebGate to Working Folder - name: Move WebGate to Working Folder
command: mv /tmp/source/webgate.3.0.4.tar.gz /opt/stack/. command: cp /tmp/source/webgate.3.0.4.tar.gz /opt/stack/webgate.3.0.4.tar.gz
- name: Extract WebGate - name: Extract WebGate
command: tar -zxvf /opt/stack/webgate.3.0.4.tar.gz command: tar -zxvf /opt/stack/webgate.3.0.4.tar.gz
- name: Delete File
command: rm /opt/stack/webgate.3.0.4.tar.gz
\ No newline at end of file
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!