summaryrefslogtreecommitdiffstats
path: root/etc/periodic/daily/800.scrub-zfs
blob: ee0e52a8fd6076c1f36f095fc24bef2789701759 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#!/bin/sh
#
# $FreeBSD$
#

# If there is a global system configuration file, suck it in.
#

newline="
" # A single newline

if [ -r /etc/defaults/periodic.conf ]
then
    . /etc/defaults/periodic.conf
    source_periodic_confs
fi

: ${daily_scrub_zfs_default_threshold=35}

case "$daily_scrub_zfs_enable" in
    [Yy][Ee][Ss])
	echo
	echo 'Scrubbing of zfs pools:'

	if [ -z "${daily_scrub_zfs_pools}" ]; then
		daily_scrub_zfs_pools="$(zpool list -H -o name)"
	fi

	rc=0
	for pool in ${daily_scrub_zfs_pools}; do
		# sanity check
		_status=$(zpool list "${pool}" 2> /dev/null)
		if [ $? -ne 0 ]; then
			rc=2
			echo "   WARNING: pool '${pool}' specified in"
			echo "            '/etc/periodic.conf:daily_scrub_zfs_pools'"
			echo "            does not exist"
			continue
		fi
		_status=${_status##*$newline}
		case ${_status} in
		*FAULTED*)
			rc=3
			echo "Skipping faulted pool: ${pool}"
			continue ;;
		esac

		# determine how many days shall be between scrubs
		eval _pool_threshold=\${daily_scrub_zfs_$(echo "${pool}"|tr  ".:-" "_")_threshold}
		if [ -z "${_pool_threshold}" ];then
			_pool_threshold=${daily_scrub_zfs_default_threshold}
		fi

		_last_scrub=$(zpool history ${pool} | \
		    egrep "^[0-9\.\:\-]{19} zpool scrub ${pool}\$" | tail -1 |\
		    cut -d ' ' -f 1)
		if [ -z "${_last_scrub}" ]; then
			# creation time of the pool if no scrub was done
			_last_scrub=$(zpool history ${pool} | \
			    sed -ne '2s/ .*$//p')
		fi

		# Now minus last scrub (both in seconds) converted to days.
		_scrub_diff=$(expr -e \( $(date +%s) - \
		    $(date -j -f %F.%T ${_last_scrub} +%s) \) / 60 / 60 / 24)
		if [ ${_scrub_diff} -lt ${_pool_threshold} ]; then
			echo "   skipping scrubbing of pool '${pool}':"
			echo "      last scrubbing is ${_scrub_diff} days ago, threshold is set to ${_pool_threshold} days"
			continue
		fi

		_status="$(zpool status ${pool} | grep scrub:)"
		case "${_status}" in
			*"scrub in progress"*)
				echo "   scrubbing of pool '${pool}' already in progress, skipping:"
				;;
			*"none requested"*)
				echo "   starting first scrub (since reboot) of pool '${pool}':"
				zpool scrub ${pool}
				[ $rc -eq 0 ] && rc=1
				;;
			*)
				echo "   starting scrub of pool '${pool}':"
				zpool scrub ${pool}
				[ $rc -eq 0 ] && rc=1
				;;
		esac

		echo "      consult 'zpool status ${pool}' for the result"
	done
	;;

    *)
	rc=0
	;;
esac

exit $rc
OpenPOWER on IntegriCloud