summaryrefslogtreecommitdiff
path: root/ansible/roles/ssd/tasks/main.yml
blob: f70aba50bcc2c6ee65754f923fa1bcd328422c50 (plain)
1
2
3
4
5
6
7
8
9
10
- name: "install util-linux for fstrim"
  apt:
    name:
      - util-linux
    state: present
- name: "enable fstrim timer"
  systemd:
    name: fstrim.timer
    enabled: yes
    state: restarted