aboutsummaryrefslogtreecommitdiff
path: root/etc/periodic/weekly/310.locate
diff options
context:
space:
mode:
authorBrian Somers <brian@FreeBSD.org>2000-09-14 17:19:15 +0000
committerBrian Somers <brian@FreeBSD.org>2000-09-14 17:19:15 +0000
commit9ed55d11927f19588b8aef6f62573088ef326533 (patch)
treec31f792ea5c6e9dc64b4548ce1eac04f000541b2 /etc/periodic/weekly/310.locate
parentcb144e905c51d496dc25e6c2e9c99ba603d00a02 (diff)
downloadsrc-9ed55d11927f19588b8aef6f62573088ef326533.tar.gz
src-9ed55d11927f19588b8aef6f62573088ef326533.zip
Another overhaul of the periodic stuff.
All periodic sub-scripts <larf> now have their return codes interpreted by periodic(8). Output may be masked based on variable values in periodic.conf. It's also now possible to email periodic output to arbitrary addresses, or to send it to a log file, examples of which can be found in newsyslog.conf. The upshot of it all should be no discernable changes to the default behaviour of periodic(8). PR: 21250
Notes
Notes: svn path=/head/; revision=65843
Diffstat (limited to 'etc/periodic/weekly/310.locate')
-rwxr-xr-xetc/periodic/weekly/310.locate25
1 files changed, 13 insertions, 12 deletions
diff --git a/etc/periodic/weekly/310.locate b/etc/periodic/weekly/310.locate
index 53d3d8001641..e6921ab56e82 100755
--- a/etc/periodic/weekly/310.locate
+++ b/etc/periodic/weekly/310.locate
@@ -13,19 +13,20 @@ fi
case "$weekly_locate_enable" in
[Yy][Ee][Ss])
- if [ -x /usr/libexec/locate.updatedb -a -f $locdb ]
- then
- echo ""
- echo "Rebuilding locate database:"
+ echo ""
+ echo "Rebuilding locate database:"
- locdb=/var/db/locate.database
+ locdb=/var/db/locate.database
- touch $locdb
- chown nobody $locdb
- chmod 644 $locdb
+ touch $locdb && rc=0 || rc=3
+ chown nobody $locdb || rc=3
+ chmod 644 $locdb || rc=3
- cd /
- echo /usr/libexec/locate.updatedb | nice -5 su -fm nobody
- chmod 444 $locdb
- fi;;
+ cd /
+ echo /usr/libexec/locate.updatedb | nice -5 su -fm nobody || rc=3
+ chmod 444 $locdb || rc=3;;
+
+ *) rc=0;;
esac
+
+exit $rc