mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
Fix apt module needing another format character
This commit is contained in:
committed by
Matt Clay
parent
c7cb1b28cd
commit
9e9b6a24f4
@@ -562,7 +562,7 @@ def remove(m, pkgspec, cache, purge=False,
|
||||
else:
|
||||
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)
|
||||
if m._diff:
|
||||
|
||||
Reference in New Issue
Block a user