You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
---
|
|
|
|
- name: Install custom fstrim.service
|
|
|
|
copy: src=fstrim.service dest=/etc/systemd/system/
|
|
|
|
notify: systemd-daemon-reload
|
|
|
|
|
|
|
|
- name: Install fstrim.timer on Debian
|
|
|
|
copy: src=fstrim.timer.debian dest=/etc/systemd/system/fstrim.timer
|
|
|
|
when: ansible_distribution == 'Debian'
|
|
|
|
notify: systemd-daemon-reload
|
|
|
|
|
|
|
|
- file: path=/etc/systemd/system/fstrim.timer.d state=directory
|
|
|
|
- copy: src=10-daily.conf dest=/etc/systemd/system/fstrim.timer.d/10-daily.conf
|
|
|
|
notify: systemd-daemon-reload
|
|
|
|
|
|
|
|
- service: name=fstrim.timer enabled=yes state=started
|