diff options
author | michaels <michaels@cvs.openbsd.org> | 1997-04-03 00:57:50 +0000 |
---|---|---|
committer | michaels <michaels@cvs.openbsd.org> | 1997-04-03 00:57:50 +0000 |
commit | d6564c01bff9b2b73f5321307f70b5cd3f1432b4 (patch) | |
tree | 186b51167d5b9dd6035b34bf23fc07d64c5cfcb1 /usr.bin | |
parent | 4c534c1620379523ca6d1489707da1f02437fc4f (diff) |
per wishes of deraadt add ufs to default fs's to search.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/locate/locate/updatedb.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/locate/locate/updatedb.sh b/usr.bin/locate/locate/updatedb.sh index 41ccb001b59..21f754aace8 100644 --- a/usr.bin/locate/locate/updatedb.sh +++ b/usr.bin/locate/locate/updatedb.sh @@ -1,6 +1,6 @@ #!/bin/sh # -# $OpenBSD: updatedb.sh,v 1.8 1997/04/02 08:35:01 deraadt Exp $ +# $OpenBSD: updatedb.sh,v 1.9 1997/04/03 00:57:49 michaels Exp $ # # Copyright (c) September 1995 Wolfram Schneider <wosch@FreeBSD.org>. Berlin. # All rights reserved. @@ -28,7 +28,7 @@ # # updatedb - update locate database for local mounted filesystems # -# $Id: updatedb.sh,v 1.8 1997/04/02 08:35:01 deraadt Exp $ +# $Id: updatedb.sh,v 1.9 1997/04/03 00:57:49 michaels Exp $ LOCATE_CONFIG="/etc/locate.rc" if [ -f "$LOCATE_CONFIG" -a -r "$LOCATE_CONFIG" ]; then @@ -47,7 +47,7 @@ USAGE="Usage: $0 [--tmpdir=dir] [--fcodes=dbfile] [--searchpaths='dir1 dir2...'] : ${FCODES=/var/db/locate.database} # the database : ${SEARCHPATHS="/"} # directories to be put in the database : ${PRUNEPATHS="/tmp /usr/tmp /var/tmp"} # unwanted directories -: ${FILESYSTEMS="ffs"} # allowed filesystems +: ${FILESYSTEMS="ffs ufs"} # allowed filesystems : ${find=find} # Command line args override rc file and defaults |