Files
dc-deployments-automation/roles/product_startup/tasks/main.yml
Azra Sulthana b960c1c4cb crowd
2019-07-11 05:34:52 +00:00

20 lines
486 B
YAML

---
- name: "Install systemd service file"
template:
src: "product.service.j2"
dest: "/etc/systemd/system/{{ atl_systemd_service_name }}"
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"
notify:
- Enable Product
- Restart Product