config root man

Current Path : /usr/src/etc/periodic/weekly/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //usr/src/etc/periodic/weekly/330.catman

#!/bin/sh -
#
# $FreeBSD: release/9.1.0/etc/periodic/weekly/330.catman 208060 2010-05-14 04:53:57Z dougb $
#

# 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 "$weekly_catman_enable" in
    [Yy][Ee][Ss])
	if [ ! -d /usr/share/man/cat1 ]
	then
	    echo '$weekly_catman_enable is set but /usr/share/man/cat1' \
		"doesn't exist"
	    rc=2
	else
	    echo ""
	    echo "Reformatting manual pages:"

	    MANPATH=`/usr/bin/manpath -q`
	    if [ $? = 0 ]
	    then
		if [ -z "${MANPATH}" ]
		then
		    echo "manpath failed to find any manpath directories"
		    rc=3
		else
		    man_locales=`/usr/bin/manpath -qL`
		    rc=0

		    # Preformat original, non-localized manpages
		    echo /usr/libexec/catman.local -r "$MANPATH" |
			su -fm man || rc=3

		    # Preformat localized manpages.
		    if [ -n "$man_locales" ]
		    then
			for i in $man_locales
			do
			    echo /usr/libexec/catman.local -Lr \
				"$MANPATH" | LC_ALL=$i su -fm man || rc=3
			done
		    fi
		fi
	    else
		rc=3
	    fi
	fi;;

    *)  rc=0;;
esac

exit $rc

Man Man