mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-13 16:33:08 -06:00
16 lines
413 B
YAML
16 lines
413 B
YAML
---
|
|
|
|
- name: Install the startup wrapper script
|
|
ansible.builtin.copy:
|
|
src: start-synchrony
|
|
dest: "{{ atl_product_installation_current }}/bin/start-synchrony"
|
|
group: "{{ atl_product_user }}"
|
|
mode: "0750"
|
|
|
|
- name: Install the Synchrony environment settings
|
|
ansible.builtin.template:
|
|
src: "atl.synchrony.j2"
|
|
dest: "/etc/atl.synchrony"
|
|
group: "{{ atl_product_user }}"
|
|
mode: "0640"
|