aboutsummaryrefslogblamecommitdiff
path: root/etc/periodic/daily/410.status-uucp
blob: 53364774a0b459e8ecf00996dbff48073e338b8b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11

         
           

 





                                                             
  










                                                       
#!/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_uucp_enable" in
    [Yy][Ee][Ss])
	if [ -d /var/spool/uucp -a -x /usr/bin/uustat ]
	then
	    echo ""
	    echo "UUCP status:"

	    uustat -a
	fi;;
esac