install_webgate.yml
890 Bytes
---
- hosts: deployed-wdchat-dma
become: true
tasks:
- name: Extract File
command: tar -zxvf /tmp/source/webgate.3.0.4.tar.gz -C /tmp/source/
- name: Backup current configuration
command: mv /opt/stack/nginx/conf /opt/stack/nginx/bkconf
- name: Deploy new configuration
command: mv /tmp/source/conf /opt/stack/nginx/.
- name: Delete backup configuration
command: rm -r /opt/stack/nginx/bkconf
- hosts: deploy-wdchat-dma-single-host
become: true
tasks:
- name: Extract File
command: tar -zxvf /tmp/source/webgate.singlehost.conf.tar.gz -C /tmp/source/
- name: Backup current configuration
command: mv /opt/stack/nginx/conf /opt/stack/nginx/bkconf
- name: Deploy new configuration
command: mv /tmp/source/conf /opt/stack/nginx/.
- name: Delete backup configuration
command: rm -r /opt/stack/nginx/bkconf