diff options
Diffstat (limited to 'ezjail.conf.sample')
-rwxr-xr-x | ezjail.conf.sample | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/ezjail.conf.sample b/ezjail.conf.sample new file mode 100755 index 0000000..837f500 --- /dev/null +++ b/ezjail.conf.sample | |||
@@ -0,0 +1,32 @@ | |||
1 | # ezjail.conf - Example file, see ezjail(x) | ||
2 | # | ||
3 | # Note: If you alter some of those variables AFTER creating your first | ||
4 | # jail, you may have to adapt /etc/fstab.* and ${PREFIX}/etc/ezjail/* by | ||
5 | # hand | ||
6 | |||
7 | # Location of jail root directories | ||
8 | # | ||
9 | # Note: If you habe spread your jails to multiple locations, use softlinks | ||
10 | # to collect them in this directory | ||
11 | ezjail_jaildir=/usr/jails/ | ||
12 | |||
13 | # Location of the tiny skeleton jail template | ||
14 | ezjail_jailtemplate=$ezjail_jaildir/newjail | ||
15 | |||
16 | # Location of the huge base jail | ||
17 | ezjail_jailbase=$ezjail_jaildir/basejail | ||
18 | |||
19 | # Location of your copy of FreeBSD's source tree | ||
20 | ezjail_sourcetree=/usr/src | ||
21 | |||
22 | # Default options for newly created jails | ||
23 | # | ||
24 | # Note: Be VERY careful about disabling ezjail_mount_enable. Mounting | ||
25 | # basejail via nullfs depends on this. You will have to find other | ||
26 | # ways to provide your jail with essential system files | ||
27 | ezjail_mount_enable="YES" | ||
28 | ezjail_devfs_enable="YES" | ||
29 | ezjail_devfs_ruleset="devfsrules_jail" | ||
30 | ezjail_procfs_enable="YES" | ||
31 | ezjail_fdescfs_enable="YES" | ||
32 | |||