xref: /dragonfly/usr.bin/locate/locate/locate.rc (revision dcb5d66b)
1#
2# /etc/locate.rc -  command script for updatedb(8)
3#
4# $FreeBSD: head/usr.bin/locate/locate/locate.rc 290742 2015-11-13 06:16:12Z des $
5
6# temp directory
7#TMPDIR="/tmp"
8
9# the actual database
10#FCODES="/var/db/locate.database"
11
12# paths unwanted in output
13#PRUNEPATHS="/tmp /usr/tmp /var/tmp"
14
15# directories unwanted in output
16#PRUNEDIRS=".git"
17
18# filesystems allowed. Beware: a non-listed filesystem will be pruned
19# and if the SEARCHPATHS starts in such a filesystem locate will build
20# an empty database.
21#
22# the default list contains all local file systems that are not synthetic,
23# loopback mounts, or read-only, according to lsvfs.
24#
25# be careful if you add 'nfs' or other network file system types or file
26# systems that generally reside on slow or removable devices like cd9660
27#FILESYSTEMS="ufs hammer hammer2"
28
29# directories to be searched to create the database
30#
31# default to be all mount points with the above allowed filesystems, thus
32# allowing the exclusion of the root (/) filesystem while other mounted
33# and allowed filesystems can still be indexed.
34#
35#SEARCHPATHS="/"
36
37# the find program and its options
38#FIND="find -x"
39