diff options
author | Brian Somers <brian@FreeBSD.org> | 2000-09-14 17:19:15 +0000 |
---|---|---|
committer | Brian Somers <brian@FreeBSD.org> | 2000-09-14 17:19:15 +0000 |
commit | 9ed55d11927f19588b8aef6f62573088ef326533 (patch) | |
tree | c31f792ea5c6e9dc64b4548ce1eac04f000541b2 /etc/periodic/weekly/310.locate | |
parent | cb144e905c51d496dc25e6c2e9c99ba603d00a02 (diff) | |
download | src-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-x | etc/periodic/weekly/310.locate | 25 |
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 |