Make ZFS scrub frequency configurable

This commit is contained in:
Robin Meier 2024-03-27 19:26:12 +01:00
parent c0fbc9f772
commit 168a768471
3 changed files with 7 additions and 1 deletions

View File

@ -4,6 +4,11 @@
## Changelog ## Changelog
### 2024-03-27 - Made ZFS Scrub Frequency Check Configurable
The `config/zfs_health_check.EXAMPLE` has changed, please update your copy accordingly.
### 2024-03-20 - Improved Structure, New State Machine, Dynamic Paths ### 2024-03-20 - Improved Structure, New State Machine, Dynamic Paths
The structure of the files was overhauled. The structure of the files was overhauled.

View File

@ -1 +1,2 @@
MONITORED_DATASETS="trident/media trident/private trident/qbli" MONITORED_DATASETS="trident/media trident/private trident/qbli"
SCRUB_EXPIRE=2764800

View File

@ -80,7 +80,7 @@ fi
# The scrubExpire variable is in seconds. So for 8 days we calculate 8 days # The scrubExpire variable is in seconds. So for 8 days we calculate 8 days
# times 24 hours times 3600 seconds to equal 691200 seconds. # times 24 hours times 3600 seconds to equal 691200 seconds.
# scrubExpire=691200 # scrubExpire=691200
scrubExpire=1382400 # SCRUB_EXPIRE=1382400 # This was moved to config file
if [ ${problems} -eq 0 ]; then if [ ${problems} -eq 0 ]; then
currentDate=$(date +%s) currentDate=$(date +%s)
zfsVolumes=$(/sbin/zpool list -H -o name) zfsVolumes=$(/sbin/zpool list -H -o name)