f3e285ba7d
The only change in the default functionality should be that the output reports are slightly more verbose WRT files deleted. Not objected to by: freebsd-arch
47 lines
975 B
Bash
Executable File
47 lines
975 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 "$weekly_catman_enable" in
|
|
[Yy][Ee][Ss])
|
|
if [ -x /usr/libexec/catman.local -a -d /usr/share/man/cat1 -a \
|
|
-x /usr/bin/manpath ]
|
|
then
|
|
echo ""
|
|
echo "Reformatting manual pages:"
|
|
|
|
MANPATH=`/usr/bin/manpath -q`
|
|
if [ $? = 0 ]
|
|
then
|
|
if [ "x${MANPATH}" = "x" ]
|
|
then
|
|
echo "manpath failed to find any manpath directories"
|
|
else
|
|
man_locales=`/usr/bin/manpath -qL`
|
|
|
|
# Preformat original, non-localized manpages
|
|
echo /usr/libexec/catman.local "$MANPATH" | su -fm man
|
|
|
|
# Preformat localized manpages.
|
|
if [ X"$man_locales" != X ]
|
|
then
|
|
for i in $man_locales
|
|
do
|
|
LC_CTYPE=$i echo /usr/libexec/catman.local -L \
|
|
"$MANPATH" | su -fm man
|
|
done
|
|
fi
|
|
fi
|
|
fi
|
|
fi;;
|
|
esac
|