jails Delay starting jails until system has booted.

My /etc/rc.conf contains iocage_enable="yes"

Does this actually start jails at boot time?

I presumed I needed it to be able to actually install/run jails.

Have I misunderstood the point of this command?
 
This is what the rc(8) script does:
Code:
iocage_start()
{
    if checkyesno ${rcvar}; then
        echo "* [I|O|C] starting jails... "
        /usr/local/bin/iocage start --rc
    fi
}

Code:
       start	 Start	a jail identified by UUID or NAME.  Use	[ALL] to start
		 all installed jails instead.

		 Options:

		 [--rc]	 Start all jails with  boot=1  in  a  specific	order.
			 Jails with lower priority start first.
iocage(8)
 
Back
Top