Jake Howard
d87ec89887
Modprobe only loads the module, it doesn't ensure the ARC value persists correctly.
23 lines
519 B
YAML
23 lines
519 B
YAML
- name: Set module options
|
|
template:
|
|
src: files/zfs-modprobe.conf
|
|
dest: /etc/modprobe.d/zfs.conf
|
|
mode: "0644"
|
|
become: true
|
|
|
|
- name: ZFS Scrub
|
|
cron:
|
|
name: zfs scrub {{ item }}
|
|
special_time: weekly
|
|
job: zpool scrub {{ item }}
|
|
become: true
|
|
loop: "{{ zpools_to_scrub }}"
|
|
|
|
- name: Give user passwordless access to ZFS commands
|
|
lineinfile:
|
|
path: /etc/sudoers
|
|
line: "{{ user }} ALL=(ALL) NOPASSWD: /usr/sbin/zfs,/usr/sbin/zpool"
|
|
become: true
|
|
|
|
- name: Sanoid
|
|
include: sanoid.yml
|