: add smart

This commit is contained in:
VC
2024-10-29 09:11:50 +01:00
parent 5913b5af09
commit dc3bf46502
2 changed files with 14 additions and 0 deletions

View File

@@ -6,3 +6,4 @@
roles: roles:
- zfs - zfs
- nfs - nfs
- smart

View File

@@ -0,0 +1,13 @@
---
- 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