Commit ea5534c1 by ansible

no message

1 parent c0ac9127
Showing with 17 additions and 5 deletions
...@@ -52,11 +52,23 @@ ...@@ -52,11 +52,23 @@
- name: End Install NTP service - name: End Install NTP service
command: systemctl restart ntp.service command: systemctl restart ntp.service
- import_tasks: stackscript-dma.yml - name: Install Stack Management Script
when: app_name == 'dma' unarchive:
src: /tmp/source/stackscript.singlehost.zip
- import_tasks: stackscript-wdchat.yml dest: /opt/stack
when: app_name == 'wdchat' 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 - name: Begin Setup System Service
command: /opt/stack/script/add_service.sh /opt/stack/script/engine.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!