common/tasks/systemctl.yaml
Simon Cornet 2272aa6a58
All checks were successful
ci/woodpecker/push/linting Pipeline was successful
chore: migrate bare ansible_* facts to ansible_facts[] syntax
2026-05-19 09:19:03 +02:00

13 lines
359 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_facts["os_family"] == "Debian"'
notify: "daemon-reload fstrim.timer"
tags: "systemctl"