Commit 54cb43f0 by ansible

Add new action to deploy iConsole version 3.0.6.0

Add new action to install webgate version 3.1.0
1 parent 10baf8fe
Showing with 24 additions and 0 deletions
......@@ -22,3 +22,15 @@
command: rm /opt/stack/iConsole.singlehost.dma.tar.gz
- name: Setup Schedule
command: /opt/Schedule/add_schedule
- hosts: deploy-iConsole-single-host-3.0.6.0
become: true
tasks:
- name: Copy iConsole
command: cp /tmp/source/iConsole.singlehost.dma.3.0.6.0.zip /opt/stack/iConsole.singlehost.dma.3.0.6.0.zip
- name: Extract root
command: tar -zxvf /opt/stack/iConsole.singlehost.dma.3.0.6.0.zip -C /opt/
- name: Delete File
command: rm /opt/stack/iConsole.singlehost.dma.3.0.6.0.zip
- name: Setup Schedule
command: /opt/Schedule/add_schedule
\ No newline at end of file
......@@ -28,3 +28,13 @@
command: tar -zxvf /opt/stack/webgate.singlehost.dma.conf.tar.gz -C /opt/stack/
- name: Delete File
command: rm /opt/stack/webgate.singlehost.dma.conf.tar.gz
- hosts: install-webgate-dma-3.1.0
become: true
tasks:
- name: Move NginX to Working Folder
command: cp /tmp/source/webgate.3.1.0.zip /opt/stack/webgate.3.1.0.zip
- name: Extract NginX
command: tar -zxvf /opt/stack/webgate.3.1.0.zip -C /opt/stack/
- name: Delete File
command: rm /opt/stack/webgate.3.1.0.zip
\ 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!