portage: default exit (not fail) if sync=yes in check mode

This commit is contained in:
Maxim Odinintsev 2014-07-15 16:04:19 +03:00
parent f4c183f5b8
commit 36b9964c88

View file

@ -194,7 +194,7 @@ def query_set(module, set, action):
def sync_repositories(module, webrsync=False):
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:
webrsync_path = module.get_bin_path('emerge-webrsync', required=True)