xoxys.docker_tidy/tasks/main.yml
2020-03-21 12:40:49 +01:00

32 lines
522 B
YAML

# Standards: 0.1
---
- name: Write timer file
notify:
- Restart custodian
template:
src: timer.j2
dest: /etc/systemd/system/custodian.timer
tags:
- custodian
- name: Write service file
notify:
- Restart custodian
template:
src: service.j2
dest: /etc/systemd/system/custodian.service
tags:
- custodian
- name: Start custodian timer
systemd:
name: custodian.timer
state: started
daemon_reload: True
masked: False
enabled: True
tags:
- custodian
...