17 lines
323 B
YAML
17 lines
323 B
YAML
# Run hpc/horizon
|
|
---
|
|
- name: install service file.
|
|
template:
|
|
src: templates/horizon.service
|
|
dest: /etc/systemd/system/horizon.service
|
|
mode: 644
|
|
owner: root
|
|
group: root
|
|
|
|
- command: systemctl daemon-reload
|
|
|
|
- name: make sure service is started
|
|
systemd:
|
|
name: horizon.service
|
|
state: restarted
|