zypper_repository: claims to support check_mode, but does not. Fixes GH-5614.
This commit is contained in:
parent
f0b842b28b
commit
beac8292d5
1 changed files with 1 additions and 1 deletions
|
@ -120,7 +120,7 @@ def main():
|
||||||
description=dict(required=False),
|
description=dict(required=False),
|
||||||
disable_gpg_check = dict(required=False, default='no', type='bool'),
|
disable_gpg_check = dict(required=False, default='no', type='bool'),
|
||||||
),
|
),
|
||||||
supports_check_mode=True,
|
supports_check_mode=False,
|
||||||
)
|
)
|
||||||
|
|
||||||
repo = module.params['repo']
|
repo = module.params['repo']
|
||||||
|
|
Loading…
Reference in a new issue