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