Commit 67919ec9 by ansible

no message

1 parent 80362a9d
---
- hosts: all
become: true
tasks:
- name: Copy iConsole
command: cp /tmp/source/iConsole.tar.gz /opt/stack/iConsole.tar.gz
- name: Extract root
command: tar -zxvf /opt/stack/iConsole.tar.gz -C /opt/
- name: Delete File
command: rm /opt/stack/iConsole.tar.gz
---
- hosts: all
become: true
tasks:
- name: Copy root
command: cp /tmp/source/root.tar.gz /root/root.tar.gz
- name: Extract root
command: tar -zxvf /root/root.tar.gz -C /root/
- name: Delete File
command: rm /root/root.tar.gz
- name: Gen License Request File
command: /root/bin/gen_license_request.py
- name: Gen License File
command: /root/bin/gen_license.py request_license.txt license
- name: Activate License
command: cp /root/bin/license.enc /opt/iConsole/security/wdchat.license
- name: Delete request_license.txt File
command: rm /root/bin/request_license.txt
- name: Delete license.enc File
command: rm /root/bin/license.enc
---
- hosts: all
become: true
tasks:
- name: Copy Script
command: cp /tmp/source/script.singlehost.tar.gz /opt/stack/script.singlehost.tar.gz
- name: Extract Script
command: tar -zxvf /opt/stack/script.singlehost.tar.gz -C /opt/stack/
- name: Delete File
command: rm /opt/stack/script.singlehost.tar.gz
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!