jails move from plain jail /etc/jail.conf to pot

I want to use pot for a thick jail.
My jail.conf is
Code:
# Common configs for all jails
path = "/jails/$name";
host.hostname = "$name";
exec.start = "/bin/sh /etc/rc";
exec.stop = "/bin/sh /etc/rc.shutdown";
exec.clean;
persist;
ip4 = inherit;
ip6 = inherit;
mount.devfs;
mount.fdescfs;
allow.mount;
allow.mount.devfs;
allow.mount.fdescfs;
allow.mount.nullfs;
allow.mount.tmpfs;
allow.mount.procfs;
allow.mount.zfs;
enforce_statfs=1;
children.max=100;
allow.socket_af;
allow.raw_sockets;
allow.chflags;
allow.sysvipc;
a {
devfs_ruleset="20";
}
How do i configure pot to use these settings for a jail?
 
Honestly, don't know either. I can't find a man page for this stuff too. Documentation looks nice but doesn't seem to go any further than the basics.
 
Back
Top