zfs: remove system scrub (#490)

Co-authored-by: Michael Grote <michael.grote@posteo.de>
Reviewed-on: #490
This commit is contained in:
Michael Grote 2023-04-02 12:03:47 +02:00
parent 686162e624
commit c78b5e0da8

View file

@ -81,4 +81,4 @@
ansible.builtin.lineinfile:
path: /etc/cron.d/zfsutils-linux
state: absent
line: '24 0 8-14 * * root [ $(date +\%w) -eq 0 ] && [ -x /usr/lib/zfs-linux/scrub ] && /usr/lib/zfs-linux/scrub'
line: '24 0 8-14 * * root if [ $(date +\%w) -eq 0 ] && [ -x /usr/lib/zfs-linux/scrub ]; then /usr/lib/zfs-linux/scrub; fi'