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
reviewable/pr18780/r1
nmeum 10 years ago
parent 19e688b017
commit 926194f75d

@ -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')

Loading…
Cancel
Save