Commit 90e3b6ff by ansible

no message

1 parent 695e13c8
---
- hosts: NewServer
become: true
tasks:
- import_role:
name: loadstack
\ No newline at end of file
- git:
repo: 'https://ansible@example.com/ansible/software.git'
dest: /tmp/source
- copy:
src: /tmp/source
dest: /tmp
mode: 0755
- git:
repo: 'https://ansible@example.com/ansible/software-configuration.git'
dest: /tmp/configuration
version: develop
- copy:
src: /tmp/configuration
dest: /tmp
mode: 0711
- name: Load software stack 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'
- git:
repo: 'https://ansible@example.com/ansible/software.git'
dest: /tmp/source
- copy:
src: /tmp/source
dest: /tmp
mode: 0755
- git:
repo: 'https://ansible@example.com/ansible/software-configuration.git'
dest: /tmp/configuration
version: develop
- copy:
src: /tmp/configuration
dest: /tmp
mode: 0711
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!