Commit a30cc389 by ansible

Release new stack script version 3.1.4

             - Fix Bug nginx.wildfly.sh error when stop start
1 parent a30a5b66
Showing with 20 additions and 0 deletions
...@@ -9,3 +9,23 @@ ...@@ -9,3 +9,23 @@
- name: Delete File - name: Delete File
command: rm /opt/stack/script.singlehost.tar.gz command: rm /opt/stack/script.singlehost.tar.gz
- hosts: 06_deploy-dma-singlehost-script-3.1.4
become: true
tasks:
- name: Unarchive a file that is already on the remote machine
unarchive:
src: /tmp/source/stackscript.singlehost.zip
dest: /opt/stack
remote_src: yes
group: wdadmin
owner: wdadmin
mode: 0711
- file:
path: '/opt/stack/{{ item.dir }}'
group: wdadmin
owner: wdadmin
mode: 0755
state: directory
recurse: yes
with_items:
- { dir: 'script' }
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!