aboutsummaryrefslogtreecommitdiff
path: root/etc/periodic/weekly/330.catman
blob: 999913fb7025536aab6f78df8b6db59d6394d355 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/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 [ ! -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 "$MANPATH" |
			su -fm man || rc=3

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

    *)  rc=0;;
esac

exit $rc