mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-06 18:53:12 +00:00
Make sure portage doesn't ask for confirmation
If EMERGE_DEFAULT_OPTS in make.conf(5) contains '--ask' then the portage module doesn't work correctly, this commit fixes that
This commit is contained in:
@@ -335,6 +335,7 @@ def cleanup_packages(module, packages):
|
||||
def run_emerge(module, packages, *args):
|
||||
args = list(args)
|
||||
|
||||
args.append('--ask=n')
|
||||
if module.check_mode:
|
||||
args.append('--pretend')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user