acpi: Narrow workaround for broken interrupt settings
[dragonfly.git] / etc / periodic / weekly / 320.whatis
blob7349c8228bbc37468c30c897b3e50412d08df144
1 #!/bin/sh -
3 # $FreeBSD: head/etc/periodic/weekly/320.whatis 73349 2001-03-02 16:52:14Z ru $
6 # If there is a global system configuration file, suck it in.
8 if [ -r /etc/defaults/periodic.conf ]
9 then
10 . /etc/defaults/periodic.conf
11 source_periodic_confs
14 case "$weekly_whatis_enable" in
15 [Yy][Ee][Ss])
16 echo ""
17 echo "Rebuilding whatis database:"
19 MANPATH=`/usr/bin/manpath -q`
20 if [ $? = 0 ]
21 then
22 if [ -z "${MANPATH}" ]
23 then
24 echo "manpath failed to find any manpage directories"
25 rc=3
26 else
27 rc=0
29 # Build whatis(1) database(s) for original, non-localized
30 # manpages.
31 /usr/libexec/makewhatis.local "${MANPATH}" || rc=3
33 else
34 rc=3
35 fi;;
37 *) rc=0;;
38 esac
40 exit $rc