Advertisement
pcwizz

ezjail conf

Dec 30th, 2013
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  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=/data/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
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement