Files
ansible/roles/smart/tasks/main.yml
2024-10-29 09:11:50 +01:00

14 lines
240 B
YAML

---
- name: Install SMART
ansible.builtin.apt:
name: smartmontools
state: present
update_cache: true
- name: Ensure smartd is enable & started
ansible.builtin.service:
name: smartd
enabled: true
state: started