common/tasks/systemctl.yaml
2024-11-22 11:13:16 +01:00

14 lines
356 B
YAML

---
# configure fstrim.timer
- name: "systemctl - config - fstrim.timer"
ansible.builtin.template:
src: "templates/systemctl/fstrim.timer.j2"
dest: "/usr/lib/systemd/system/fstrim.timer"
owner: "root"
group: "root"
mode: "0644"
when: 'ansible_os_family == "Debian"'
notify: "daemon-reload fstrim.timer"
tags:
- "systemctl"