Files
dc-deployments-automation/roles/product_startup/tasks/main.yml
Azra Sulthana 8fbf76ab3e changes
2019-07-11 06:00:22 +00:00

26 lines
580 B
YAML

---
- name: "Install systemd service file"
template:
src: "product.service.j2"
dest: "/etc/systemd/system/{{ atl_systemd_service_name }}"
owner: root
group: root
mode: 0640
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 }}"
owner: root
group: root
mode: 0640
when: atl_product_edition == "crowd"
notify:
- Enable Product
- Restart Product