summaryrefslogtreecommitdiffstats
path: root/sys-utils/update_state.sh
blob: f318d08a1072fa4ce22489841085f9c6c227f161 (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
#!/bin/sh

if test "`whoami`" != "root"; then
    echo "This script must be executed by root"
    exit 1
fi

if test -x /usr/lib/locate/updatedb; then
    echo "WARNING: The /usr/lib/locate/find.codes file may violate the"
    echo "         privacy of your users.  Please consider making it"
    echo "         readable only by root."
    echo ""
    echo "Updating locate database"

    /usr/lib/locate/updatedb
fi

if test -d /usr/lib/texmf; then
    echo "Building ls-R cache file for TeX"
    /bin/ls -LR /usr/lib/texmf > /tmp/ls-R.$$
    if test -f /usr/lib/texmf/ls-R; then
        cp /usr/lib/texmf/ls-R /usr/lib/texmf/ls-R.old
    fi
    mv /tmp/ls-R.$$ /usr/lib/texmf/ls-R
fi

if test -x /usr/bin/makewhatis; then
    for i in /usr/man /usr/local/man /usr/X386/man /usr/interviews/man; do
        if test -d $i; then
            echo "Building whatis database in $i"
            /usr/bin/makewhatis $i
        fi
    done
fi

if test -x /usr/bin/mandb; then
    echo "Updating manpage database"
    /usr/bin/mandb
fi

exit 0