Commit ea5534c1 by ansible

no message

1 parent c0ac9127
Showing with 17 additions and 5 deletions
......@@ -52,11 +52,23 @@
- name: End Install NTP service
command: systemctl restart ntp.service
- import_tasks: stackscript-dma.yml
when: app_name == 'dma'
- import_tasks: stackscript-wdchat.yml
when: app_name == 'wdchat'
- name: Install Stack Management Script
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' }
- name: Begin Setup System Service
command: /opt/stack/script/add_service.sh /opt/stack/script/engine.service
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!