freebsd-skq/etc/periodic/weekly/310.locate
pst 1d67bc6abb Copy /etc/cron.d to /etc/periodic per-request of many.
This wasn't done with a repository copy because there was no
history of any consequence.  Flames to me.
1997-08-16 17:04:02 +00:00

19 lines
407 B
Bash
Executable File

#!/bin/sh -
#
# $Id: 310.locate,v 1.1.1.1 1997/08/12 17:51:16 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 2>&1 |\
fgrep -v 'Permission denied'
chmod 444 ${locdb}
fi