Merge pull request #400 from benalbrecht/devel
Fix possible values for zfs sync property
This commit is contained in:
commit
f53fc377bf
1 changed files with 2 additions and 2 deletions
|
@ -177,7 +177,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- The sync property.
|
- The sync property.
|
||||||
required: False
|
required: False
|
||||||
choices: ['on','off']
|
choices: ['standard','always','disabled']
|
||||||
utf8only:
|
utf8only:
|
||||||
description:
|
description:
|
||||||
- The utf8only property.
|
- The utf8only property.
|
||||||
|
@ -368,7 +368,7 @@ def main():
|
||||||
'sharenfs': {'required': False},
|
'sharenfs': {'required': False},
|
||||||
'sharesmb': {'required': False},
|
'sharesmb': {'required': False},
|
||||||
'snapdir': {'required': False, 'choices':['hidden', 'visible']},
|
'snapdir': {'required': False, 'choices':['hidden', 'visible']},
|
||||||
'sync': {'required': False, 'choices':['on', 'off']},
|
'sync': {'required': False, 'choices':['standard', 'always', 'disabled']},
|
||||||
# Not supported
|
# Not supported
|
||||||
#'userquota': {'required': False},
|
#'userquota': {'required': False},
|
||||||
'utf8only': {'required': False, 'choices':['on', 'off']},
|
'utf8only': {'required': False, 'choices':['on', 'off']},
|
||||||
|
|
Loading…
Add table
Reference in a new issue