diff options
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 604dbbe88b2..11ef1152afd 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.4 1996/10/20 00:52:58 michaels Exp $ +# $OpenBSD: updatedb.sh,v 1.5 1996/11/30 18:12:51 millert 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.4 1996/10/20 00:52:58 michaels Exp $ +# $Id: updatedb.sh,v 1.5 1996/11/30 18:12:51 millert Exp $ LOCATE_CONFIG="/etc/locate.rc" if [ -f "$LOCATE_CONFIG" -a -r "$LOCATE_CONFIG" ]; then @@ -46,7 +46,7 @@ PATH=$LIBEXECDIR:/bin:/usr/bin:$PATH; export PATH : ${FCODES=/var/db/locate.database} # the database : ${SEARCHPATHS="/"} # directories to be put in the database : ${PRUNEPATHS="/tmp /usr/tmp /var/tmp"} # unwanted directories -: ${FILESYSTEMS="ufs"} # allowed filesystems +: ${FILESYSTEMS="ffs"} # allowed filesystems : ${find=find} case X"$SEARCHPATHS" in |