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
 --------------------------------------------------------------------------------