Skip to content

Commit

Permalink
made changes to acs playbook
Browse files Browse the repository at this point in the history
  • Loading branch information
piraartur committed Sep 6, 2022
1 parent 1525d9f commit 70e675c
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions playbooks/acs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
ansible.builtin.import_playbook: secrets.yml

- hosts: all:!external
gather_facts: no
ansible.builtin.gather_facts: false
tasks:
- name: Gather facts from all hosts
ansible.builtin.setup:

- name: Database Role
hosts: database
gather_facts: no
ansible.builtin.gather_facts: false
roles:
- role: "../roles/postgres"
when: repo_db_url == "" or sync_db_url == ""
Expand All @@ -27,7 +27,7 @@

- name: Activemq Role
hosts: activemq
gather_facts: no
ansible.builtin.gather_facts: false
roles:
- role: "../roles/activemq"
when: not groups.external_activemq | default([])
Expand All @@ -36,7 +36,7 @@

- name: Transformers Role
hosts: transformers
gather_facts: no
ansible.builtin.gather_facts: false
roles:
- role: "../roles/transformers"
post_tasks:
Expand All @@ -56,7 +56,7 @@

- name: Alfresco Search Role
hosts: search
gather_facts: no
ansible.builtin.gather_facts: no
roles:
- role: "../roles/search"
post_tasks:
Expand All @@ -81,7 +81,7 @@

- name: Alfresco Repository Role
hosts: repository
gather_facts: no
ansible.builtin.gather_facts: false
roles:
- role: "../roles/repository"
post_tasks:
Expand All @@ -103,7 +103,7 @@

- name: T-Router Role
hosts: transformers
gather_facts: no
ansible.builtin.gather_facts: false
roles:
- role: "../roles/trouter"
when: acs.edition == "Enterprise"
Expand All @@ -124,7 +124,7 @@

- name: Shared File Store Role
hosts: transformers
gather_facts: no
ansible.builtin.gather_facts: false
roles:
- role: "../roles/sfs"
when: acs.edition == "Enterprise"
Expand All @@ -145,7 +145,7 @@

- name: Alfresco Digital Workspace Role
hosts: adw
gather_facts: no
ansible.builtin.gather_facts: false
roles:
- role: "../roles/adw"
when: acs.edition == "Enterprise"
Expand All @@ -166,7 +166,7 @@

- name: Nginx Role
hosts: nginx
gather_facts: no
ansible.builtin.gather_facts: false
roles:
- role: "../roles/nginx"
post_tasks:
Expand All @@ -180,7 +180,7 @@

- name: Sync Service Role
hosts: syncservice
gather_facts: no
ansible.builtin.gather_facts: false
roles:
- role: "../roles/sync"
when: acs.edition == "Enterprise"
Expand Down

0 comments on commit 70e675c

Please sign in to comment.