mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-16 07:11:05 +01:00
12 lines
135 B
Bash
Executable File
12 lines
135 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
if [ -d /var/spool/uucp -a -x /usr/bin/uustat ]; then
|
|
echo ""
|
|
echo "UUCP status:"
|
|
|
|
uustat -a
|
|
fi
|