main.yml 825 Bytes
- name: Start SoftwareStack
  shell: /opt/stack/mongodb/ctlscript.sh start
- name: Start SoftwareStack
  shell: /opt/stack/mongodb1/ctlscript.sh start
- name: Start SoftwareStack
  shell: /opt/stack/mongodb2/ctlscript.sh start
- name: Start SoftwareStack
  shell: /opt/stack/postgres/ctlscript.sh start

- name: Deploy Application based on Application Name
  import_tasks: apimanager.yml
  when: app_name == 'apimanager'
- import_tasks: dma.yml
  when: app_name == 'dma'
- import_tasks: wdchat.yml
  when: app_name == 'wdchat'
  
- name: Stop SoftwareStack
  shell: /opt/stack/mongodb/ctlscript.sh stop
- name: Stop SoftwareStack
  shell: /opt/stack/mongodb1/ctlscript.sh stop
- name: Stop SoftwareStack
  shell: /opt/stack/mongodb2/ctlscript.sh stop
- name: Stop SoftwareStack
  shell: /opt/stack/postgres/ctlscript.sh stop