From a410f524b400a95a1f10e37d6628999c1298088a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Wir=C3=A9n?= Date: Wed, 9 Dec 2015 00:02:34 +0100 Subject: [PATCH] Update example --- lib/ansible/modules/extras/system/zfs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/extras/system/zfs.py b/lib/ansible/modules/extras/system/zfs.py index f9c7a5bad30..ff3e89a3092 100644 --- a/lib/ansible/modules/extras/system/zfs.py +++ b/lib/ansible/modules/extras/system/zfs.py @@ -53,8 +53,8 @@ author: "Johan Wiren (@johanwiren)" ''' EXAMPLES = ''' -# Create a new file system called myfs in pool rpool -- zfs: name=rpool/myfs state=present +# Create a new file system called myfs in pool rpool with the setuid property turned off +- zfs: name=rpool/myfs state=present setuid=off # Create a new volume called myvol in pool rpool. - zfs: name=rpool/myvol state=present volsize=10M