mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-13 08:23:06 -06:00
26 lines
576 B
YAML
26 lines
576 B
YAML
---
|
|
|
|
- name: "Install systemd service file"
|
|
template:
|
|
src: "product.service.j2"
|
|
dest: "/etc/systemd/system/{{ atl_systemd_service_name }}"
|
|
<<<<<<< HEAD
|
|
when: atl_product_edition != "crowd"
|
|
notify:
|
|
- Enable Product
|
|
- Restart Product
|
|
|
|
- name: "Install systemd service file for crowd"
|
|
template:
|
|
src: "crowd.service.j2"
|
|
dest: "/etc/systemd/system/{{ atl_systemd_service_name }}"
|
|
when: atl_product_edition == "crowd"
|
|
=======
|
|
owner: root
|
|
group: root
|
|
mode: 0640
|
|
>>>>>>> origin/master
|
|
notify:
|
|
- Enable Product
|
|
- Restart Product
|