#!/bin/sh
if [ -x "/usr/bin/updatedb" ]; then
	logger -p cron.notice "slocate: making slocate database..."

  if [ -f /etc/updatedb.conf ]
  then nice /usr/bin/updatedb
  else nice /usr/bin/updatedb -f proc
  fi
fi
