summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorJoerg Jung <jung@cvs.openbsd.org>2020-02-12 20:51:50 +0000
committerJoerg Jung <jung@cvs.openbsd.org>2020-02-12 20:51:50 +0000
commita00fd269703c664877420f6f4414d0f45b25533e (patch)
treeb9372ad900a8c4d611cb385f853a14240a32c436 /etc
parentfbc5ef6fa328c59ae8e29ef9b89854ca5385c9ba (diff)
do not propagate TMPDIR and override value from /etc/locate.rc in weekly
effectively reverting r1.9 to follow principal of least surprise "this is fine" millert "i agree with direction" schwarze
Diffstat (limited to 'etc')
-rw-r--r--etc/weekly4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/weekly b/etc/weekly
index c86b9a57c86..d6441cfae11 100644
--- a/etc/weekly
+++ b/etc/weekly
@@ -1,5 +1,5 @@
#
-# $OpenBSD: weekly,v 1.29 2019/12/30 16:49:51 espie Exp $
+# $OpenBSD: weekly,v 1.30 2020/02/12 20:51:49 jung Exp $
#
# For local additions, create the file /etc/weekly.local.
# To get section headers, use the function next_part in weekly.local.
@@ -48,7 +48,7 @@ if [ -f /var/db/locate.database ]; then
if TMP=`mktemp /var/db/locate.database.XXXXXXXXXX`; then
trap 'rm -f $TMP; exit 1' 0 1 15
UPDATEDB="/usr/libexec/locate.updatedb"
- echo "${UPDATEDB} --fcodes=- --tmpdir=${TMPDIR:-/tmp}" | \
+ echo "${UPDATEDB} --fcodes=-" | \
nice -5 su -m nobody 1>$TMP
if [ $? -ne 0 ]; then
echo "Rebuilding locate database failed"