View | Details | Raw Unified | Return to bug 268851
Collapse All | Expand All

(-)b/usr.sbin/periodic/etc/daily/404.status-zfs (-1 / +8 lines)
Lines 18-24 case "$daily_status_zfs_enable" in Link Here
18
18
19
	case "$daily_status_zfs_zpool_list_enable" in
19
	case "$daily_status_zfs_zpool_list_enable" in
20
	    [Yy][Ee][Ss])
20
	    [Yy][Ee][Ss])
21
		lout=`zpool list`
21
		case "$daily_status_zfs_zpool_list_verbose" in
22
		    [Yy][Ee][Ss])
23
			_zpool_list_verbose=-v
24
			;;
25
		    *)
26
			;;
27
		esac
28
		lout=`zpool list ${_zpool_list_verbose}`
22
		echo "$lout"
29
		echo "$lout"
23
		echo
30
		echo
24
		;;
31
		;;
(-)b/usr.sbin/periodic/periodic.conf (+1 lines)
Lines 122-127 daily_status_graid_enable="NO" # Check graid(8) Link Here
122
# 404.status-zfs
122
# 404.status-zfs
123
daily_status_zfs_enable="NO"				# Check ZFS
123
daily_status_zfs_enable="NO"				# Check ZFS
124
daily_status_zfs_zpool_list_enable="YES"		# List ZFS pools
124
daily_status_zfs_zpool_list_enable="YES"		# List ZFS pools
125
daily_status_zfs_zpool_list_verbose="NO"		# List ZFS pools verbose
125
126
126
# 406.status-gmirror
127
# 406.status-gmirror
127
daily_status_gmirror_enable="NO"			# Check gmirror(8)
128
daily_status_gmirror_enable="NO"			# Check gmirror(8)

Return to bug 268851