From d419722a2429c9527ee02dd3d7db1e50e6cf3272 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Mon, 19 Nov 2012 13:43:45 +0100 Subject: [PATCH] adapt documentation to use boolean parameter as well Signed-off-by: Nico Schottelius --- cdist/conf/type/__jail/man.text | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cdist/conf/type/__jail/man.text b/cdist/conf/type/__jail/man.text index 62b6e02e..f4b9e3a1 100644 --- a/cdist/conf/type/__jail/man.text +++ b/cdist/conf/type/__jail/man.text @@ -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 --------------------------------------------------------------------------------