mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-16 18:03:06 -06:00
14 lines
301 B
YAML
14 lines
301 B
YAML
---
|
|
|
|
- name: "Install systemd service file"
|
|
template:
|
|
src: "product.service.j2"
|
|
dest: "/etc/systemd/system/{{ atl_systemd_service_name }}"
|
|
|
|
- name: Enable and start Product
|
|
service:
|
|
name: "{{ atl_systemd_service_name }}"
|
|
state: started
|
|
enabled: true
|
|
when: atl_startup_enable
|