diff options
author | erdgeist <erdgeist@erdgeist.org> | 2006-01-16 05:07:14 +0000 |
---|---|---|
committer | erdgeist <erdgeist@erdgeist.org> | 2006-01-16 05:07:14 +0000 |
commit | 388c9ffef5f5ddb024c9c41e58f486e79f946521 (patch) | |
tree | fddf1e7695f6f77afd28e040ad7f4d278d83ecb0 /ezjail.conf.sample | |
parent | 0c133c53cd3b4c5ad7d4cfddacedb44d67608661 (diff) |
Introducing ezjail_portscvsroot, dont initialize defaults twice
Diffstat (limited to 'ezjail.conf.sample')
-rwxr-xr-x | ezjail.conf.sample | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/ezjail.conf.sample b/ezjail.conf.sample index 5c5e589..8824a56 100755 --- a/ezjail.conf.sample +++ b/ezjail.conf.sample | |||
@@ -8,25 +8,28 @@ | |||
8 | # | 8 | # |
9 | # Note: If you have spread your jails to multiple locations, use softlinks | 9 | # Note: If you have spread your jails to multiple locations, use softlinks |
10 | # to collect them in this directory | 10 | # to collect them in this directory |
11 | ezjail_jaildir=/usr/jails | 11 | # ezjail_jaildir=/usr/jails |
12 | 12 | ||
13 | # Location of the tiny skeleton jail template | 13 | # Location of the tiny skeleton jail template |
14 | ezjail_jailtemplate=$ezjail_jaildir/newjail | 14 | # ezjail_jailtemplate=$ezjail_jaildir/newjail |
15 | 15 | ||
16 | # Location of the huge base jail | 16 | # Location of the huge base jail |
17 | ezjail_jailbase=$ezjail_jaildir/basejail | 17 | # ezjail_jailbase=$ezjail_jaildir/basejail |
18 | 18 | ||
19 | # Location of your copy of FreeBSD's source tree | 19 | # Location of your copy of FreeBSD's source tree |
20 | ezjail_sourcetree=/usr/src | 20 | # ezjail_sourcetree=/usr/src |
21 | |||
22 | # In case you want to provide a copy of ports tree in base jail, set this to | ||
23 | # a cvsroot near you | ||
24 | # ezjail_portscvsroot=:pserver:anoncvs@anoncvs.at.FreeBSD.org:/home/ncvs | ||
21 | 25 | ||
22 | # Default options for newly created jails | 26 | # Default options for newly created jails |
23 | # | 27 | # |
24 | # Note: Be VERY careful about disabling ezjail_mount_enable. Mounting | 28 | # Note: Be VERY careful about disabling ezjail_mount_enable. Mounting |
25 | # basejail via nullfs depends on this. You will have to find other | 29 | # basejail via nullfs depends on this. You will have to find other |
26 | # ways to provide your jail with essential system files | 30 | # ways to provide your jail with essential system files |
27 | ezjail_mount_enable="YES" | 31 | # ezjail_mount_enable="YES" |
28 | ezjail_devfs_enable="YES" | 32 | # ezjail_devfs_enable="YES" |
29 | ezjail_devfs_ruleset="devfsrules_jail" | 33 | # ezjail_devfs_ruleset="devfsrules_jail" |
30 | ezjail_procfs_enable="YES" | 34 | # ezjail_procfs_enable="YES" |
31 | ezjail_fdescfs_enable="YES" | 35 | # ezjail_fdescfs_enable="YES" |
32 | |||