Fix apt module needing another format character
This commit is contained in:
parent
609d4cf84b
commit
f39e2343c4
1 changed files with 1 additions and 1 deletions
|
@ -562,7 +562,7 @@ def remove(m, pkgspec, cache, purge=False,
|
||||||
else:
|
else:
|
||||||
check_arg = ''
|
check_arg = ''
|
||||||
|
|
||||||
cmd = "%s -q -y %s %s %s remove %s" % (APT_GET_CMD, dpkg_options, purge, autoremove, check_arg, packages)
|
cmd = "%s -q -y %s %s %s %s remove %s" % (APT_GET_CMD, dpkg_options, purge, autoremove, check_arg, packages)
|
||||||
|
|
||||||
rc, out, err = m.run_command(cmd)
|
rc, out, err = m.run_command(cmd)
|
||||||
if m._diff:
|
if m._diff:
|
||||||
|
|
Loading…
Reference in a new issue