mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-27 10:40:22 -07:00
Merge pull request #8143 from PinGwynn/feature
portage: default exit (not fail) if sync=yes in check mode
This commit is contained in:
commit
ec874193fe
1 changed files with 1 additions and 1 deletions
|
@ -194,7 +194,7 @@ def query_set(module, set, action):
|
||||||
|
|
||||||
def sync_repositories(module, webrsync=False):
|
def sync_repositories(module, webrsync=False):
|
||||||
if module.check_mode:
|
if module.check_mode:
|
||||||
module.fail_json(msg='check mode not supported by sync')
|
module.exit_json(msg='check mode not supported by sync')
|
||||||
|
|
||||||
if webrsync:
|
if webrsync:
|
||||||
webrsync_path = module.get_bin_path('emerge-webrsync', required=True)
|
webrsync_path = module.get_bin_path('emerge-webrsync', required=True)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue