From c54841fb3eb4e9fddcb1082a5a78b1c34769ba88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Wir=C3=A9n?= Date: Fri, 11 Dec 2015 00:24:29 +0100 Subject: [PATCH] Keep, but ignore createparent option --- lib/ansible/modules/extras/system/zfs.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/ansible/modules/extras/system/zfs.py b/lib/ansible/modules/extras/system/zfs.py index 1d1c48e8cc..cf74c5b0b8 100644 --- a/lib/ansible/modules/extras/system/zfs.py +++ b/lib/ansible/modules/extras/system/zfs.py @@ -196,6 +196,8 @@ def main(): argument_spec = dict( name = dict(type='str', required=True), state = dict(type='str', required=True, choices=['present', 'absent']), + # No longer used. Kept here to not interfere with zfs properties + createparent = dict(type='bool', required=False) ), supports_check_mode=True, check_invalid_arguments=False