mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00:00
Change default={'no','yes'} to default={False,True} in packaging/os modules (#554)
This commit is contained in:
@@ -190,7 +190,7 @@ def main():
|
||||
argument_spec=dict(
|
||||
state=dict(default="present", choices=["present", "absent"]),
|
||||
name=dict(aliases=["pkg"], required=True),
|
||||
use_packages=dict(type='bool', default='yes')))
|
||||
use_packages=dict(type='bool', default=True)))
|
||||
|
||||
p = module.params
|
||||
|
||||
|
||||
Reference in New Issue
Block a user