summaryrefslogtreecommitdiffstats
path: root/etc/periodic/weekly/320.whatis
blob: bf159a8b472e6f92e053d3992b08b64d6b7d33ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh -
#
# $FreeBSD$
#

if [ -x /usr/libexec/makewhatis.local -a -x /usr/bin/manpath ] ; then

    echo ""
    echo "Rebuilding whatis database:"

    MANPATH=`/usr/bin/manpath -q`
    if [ $? = 0 ]; then
	if [ "x${MANPATH}" = "x" ]; then
	    echo "manpath failed to find any manpage directories"
	else
	    /usr/libexec/makewhatis.local "${MANPATH}"
	fi
    fi
fi
OpenPOWER on IntegriCloud