infrastructure/playbooks/roles/acme_sh/tasks/systemd.yml

22 lines
492 B
YAML

---
- name: Copy the system service
ansible.builtin.template:
src: acme_sh.service.j2
dest: /etc/systemd/system/acme_sh.service
mode: "0644"
become: true
- name: Copy the system timer
ansible.builtin.copy:
src: acme_sh.timer
dest: /etc/systemd/system/acme_sh.timer
mode: "0644"
become: true
- name: Enable the system timer
ansible.builtin.systemd_service:
name: acme_sh.timer
state: started
enabled: true
daemon_reload: true
become: true