Install a moduli(5) manual page.
[dragonfly.git] / contrib / bsdinstaller-1.1.6 / src / backend / lua / conf / sources.lua
1 -- $Id: sources.lua,v 1.3 2005/02/24 23:08:03 cpressey Exp $
2
3 -- Default configuration file for source objects (files and directories)
4 -- to copy to the HDD during the install.
5
6 -- Note that this conf file should return list of strings - each string
7 -- is a filename, without any leading root directory specified, which
8 -- will be copied to the HDD during install.
9
10 -- Note that if you (for example) do not want to copy /usr/local/share,
11 -- you will need to specify all subdirs of /usr/local except for share
12 -- in this list.
13
14 return {
15         "COPYRIGHT",
16         "bin",
17         "boot",
18         "cdrom",
19         "dev",
20         "etc",
21         "libexec",
22         "lib",
23         "kernel",
24         "modules",
25         "root",
26         "sbin",
27         "sys",
28         "tmp",
29         "usr/bin",
30         "usr/games",
31         "usr/include",
32         "usr/lib",
33 --      "usr/local",    -- we should use mtree to generate the hier for
34 --      "usr/X11R6",    -- these, then use pkg_add to populate them.
35         "usr/libdata",
36         "usr/libexec",
37         "usr/obj",
38         "usr/sbin",
39         "usr/share",
40         "usr/src",
41         "var"
42 }