mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-04 23:39:09 -07: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:
parent
004eb6992f
commit
650ae65f24
32 changed files with 58 additions and 58 deletions
|
@ -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)
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue