From 3d686ef07d7008815f746dd17dc31a06b0ea77d2 Mon Sep 17 00:00:00 2001 From: Kelley Reynolds Date: Wed, 11 Feb 2015 17:16:41 -0500 Subject: [PATCH] Add listsnapshots property to zfs --- lib/ansible/modules/extras/system/zfs.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/ansible/modules/extras/system/zfs.py b/lib/ansible/modules/extras/system/zfs.py index 93248897051..f2a38dddfd4 100644 --- a/lib/ansible/modules/extras/system/zfs.py +++ b/lib/ansible/modules/extras/system/zfs.py @@ -96,6 +96,11 @@ options: - The jailed property. required: False choices: ['on','off'] + listsnapshots: + description: + - the listsnapshots property. + required: False + choices: ['on','off'] logbias: description: - The logbias property. @@ -351,6 +356,7 @@ def main(): # Not supported #'groupquota': {'required': False}, 'jailed': {'required': False, 'choices':['on', 'off']}, + 'listsnapshots': {'required': False, 'choices':['on', 'off']}, 'logbias': {'required': False, 'choices':['latency', 'throughput']}, 'mountpoint': {'required': False}, 'nbmand': {'required': False, 'choices':['on', 'off']},