aboutsummaryrefslogtreecommitdiff
path: root/etc/periodic/weekly/310.locate
blob: 39455b1e5ad1124b4888a81da3e221cee118c220 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh -
#
# $Id: 310.locate,v 1.1.1.1 1997/08/16 17:04:02 pst Exp $
#
locdb=/var/db/locate.database

if [ -x /usr/libexec/locate.updatedb -a -f $locdb ] ; then

    echo ""
    echo "Rebuilding locate database:"

    touch ${locdb}; chown nobody ${locdb}; chmod 644 ${locdb}

    echo /usr/libexec/locate.updatedb | nice -5 su -fm nobody
    chmod 444 ${locdb}
fi