mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
collection: Change default='no's and 'yes's to default=False and default=True (#556)
* Change default={'no','yes'} to default={False,True}
* Add changelog
* Remove changelog
This commit is contained in:
@@ -175,7 +175,7 @@ def main():
|
||||
dict(
|
||||
client=dict(required=True),
|
||||
access_mode=dict(choices=['RO', 'RW'], default='RW'),
|
||||
no_root_squash=dict(type='bool', default='no'),
|
||||
no_root_squash=dict(type='bool', default=False),
|
||||
state=dict(default='present', choices=['present', 'absent']),
|
||||
export=dict(required=True)
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user