freebsd-dev/etc/periodic/daily/400.status-disks
Dag-Erling Smørgrav 9ae8f20c14 Allow admins to specify a regex which is applied (in the negative) to the
output from df, similar to what security/200.chkmounts does.  This can be
useful to avoid listing automounted ZFS snapshots, for instance.

MFC after:	1 week
2015-11-13 06:20:27 +00:00

41 lines
682 B
Bash
Executable File

#!/bin/sh
#
# $FreeBSD$
#
# If there is a global system configuration file, suck it in.
#
if [ -r /etc/defaults/periodic.conf ]
then
. /etc/defaults/periodic.conf
source_periodic_confs
fi
case "$daily_status_disks_enable" in
[Yy][Ee][Ss])
echo ""
echo "Disk status:"
if [ -n "${daily_status_disks_ignore}" ] ; then
ignore="egrep -v ${daily_status_disks_ignore}"
else
ignore="cat"
fi
(df $daily_status_disks_df_flags | ${ignore}) && rc=1 || rc=3
# display which filesystems need backing up
if [ -s /etc/dumpdates ]; then
if ! [ -f /etc/fstab ]; then
export PATH_FSTAB=/dev/null
fi
echo ""
dump W || rc=3
fi
;;
*) rc=0;;
esac
exit $rc