adapt documentation to use boolean parameter as well

Signed-off-by: Nico Schottelius <nico@brief.schottelius.org>
This commit is contained in:
Nico Schottelius 2012-11-19 13:43:45 +01:00
parent bb19902581
commit d419722a24
1 changed files with 3 additions and 3 deletions

View File

@ -78,7 +78,7 @@ __jail www --state present --ip "192.168.1.2" --jailbase /my/jail/base.tgz
__jail www --state absent --jailbase /my/jail/base.tgz
# Ensure that the jail called www is started
__jail www --state present --started true \
__jail www --state present --started \
--ip "192.168.1.2 netmask 255.255.255.0" \
--jailbase /my/jail/base.tgz
@ -88,10 +88,10 @@ __jail thisjail --state present --name www \
--jailbase /my/jail/base.tgz
# Go nuts
__jail lotsofoptions --state present --name testjail --started true \
__jail lotsofoptions --state present --name testjail --started \
--ip "192.168.1.100 netmask 255.255.255.0" \
--hostname "testjail.example.com" --interface "em0" \
--onboot yes --jailbase /my/jail/base.tgz --jaildir /jails
--onboot --jailbase /my/jail/base.tgz --jaildir /jails
--------------------------------------------------------------------------------