1# ezjail.conf - Example file, see ezjail.conf(5)
2#
3# Note: If you alter some of those variables AFTER creating your first
4# jail, you may have to adapt /etc/fstab.* and EZJAIL_PREFIX/etc/ezjail/* by
5# hand
6
7# Location of jail root directories
8#
9# Note: If you have 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# This is where the install sub command defaults to fetch its packages from
23# ezjail_ftphost=ftp.freebsd.org
24
25# This is the command that is being executed by the console subcommand
26# ezjail_default_execute="/usr/bin/login -f root"
27
28# This is the flavour used by default when setting up a new jail
29# ezjail_default_flavour=""
30
31# This is the default location where ezjail archives its jails to
32# ezjail_archivedir="${ezjail_jaildir}/ezjail_archives"
33
34# base jail will provide a soft link from /usr/bin/perl to /usr/local/bin/perl
35# to accomodate all scripts using '#!/usr/bin/perl'...
36# ezjail_uglyperlhack="YES"
37
38# Default options for newly created jails
39#
40# Note: Be VERY careful about disabling ezjail_mount_enable. Mounting
41# basejail via nullfs depends on this. You will have to find other
42# ways to provide your jail with essential system files
43# ezjail_mount_enable="YES"
44# ezjail_devfs_enable="YES"
45# ezjail_devfs_ruleset="devfsrules_jail"
46# ezjail_procfs_enable="YES"
47# ezjail_fdescfs_enable="YES"
48
49# ZFS options
50
51# Setting this to YES will start to manage the basejail and newjail in ZFS
52# ezjail_use_zfs="YES"
53
54# Setting this to YES will manage ALL new jails in their own zfs
55# ezjail_use_zfs_for_jails="YES"
56
57# The name of the ZFS ezjail should create jails on, it will be mounted at the ezjail_jaildir
58# ezjail_jailzfs="tank/ezjail"
59
60# ADVANCED, be very careful!
61# ezjail_zfs_properties="-o compression=lzjb -o atime=off"
62# ezjail_zfs_jail_properties="-o dedup=on"
63
64# For auto snapshots this is the default policy to keep old snapshots. In each window there
65# will be guaranteed to be one or two snapshots only
66# If this variable is not set, no snapshots will be removed by ezjail-admin snapshot
67
68# Example policy for a database jail with rollbackable snapshots starting with four snapshots
69# in the last hour and up to an annual snapshot for 1000 years. Beware of the load caused by
70# destroying snapshots.
71# ezjail_default_retention_policy="4x15m 3x1h 2x2h 4h 12h 6x1d 7x1w 11x4w 1000x1y"
72