Commit 2a6f9f45 by ansible

no message

1 parent a496bae2
Showing with 4 additions and 4 deletions
...@@ -5,9 +5,9 @@ ...@@ -5,9 +5,9 @@
- name: Copy root - name: Copy root
command: sudo cp /tmp/source/root.tar.gz /root/root.tar.gz command: sudo cp /tmp/source/root.tar.gz /root/root.tar.gz
- name: Extract root - name: Extract root
command: tar -zxvf /root/root.tar.gz -C /root/ command: sudo tar -zxvf /root/root.tar.gz -C /root/
- name: Delete File - name: Delete File
command: rm /root/root.tar.gz command: sudo rm /root/root.tar.gz
- name: Gen License Request File - name: Gen License Request File
command: /root/bin/gen_license_request.py chdir=/root/bin/ command: /root/bin/gen_license_request.py chdir=/root/bin/
- name: Gen License File - name: Gen License File
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
- name: Activate License - name: Activate License
command: sudo cp /root/bin/license.enc /opt/iConsole/security/wdchat.license command: sudo cp /root/bin/license.enc /opt/iConsole/security/wdchat.license
- name: Delete request_license.txt File - name: Delete request_license.txt File
command: rm /root/bin/request_license.txt command: sudo rm /root/bin/request_license.txt
- name: Delete license.enc File - name: Delete license.enc File
command: rm /root/bin/license.enc command: sudo rm /root/bin/license.enc
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!