pacman: fix upgrade: yes (#4275)

* s/sys-upgrade/sysupgrade/

* changelog fragment

* yamllint

* more fragment tweaks
This commit is contained in:
Jean Raby 2022-02-23 11:24:14 -05:00 committed by GitHub
parent 2b0b780ccb
commit b9f62bb4ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 3 deletions

View file

@ -0,0 +1,3 @@
bugfixes:
- pacman - fix ``upgrade=yes``
(https://github.com/ansible-collections/community.general/pull/4275, https://github.com/ansible-collections/community.general/issues/4274).

View file

@ -410,7 +410,7 @@ class Pacman(object):
cmd = [ cmd = [
self.pacman_path, self.pacman_path,
"--sync", "--sync",
"--sys-upgrade", "--sysupgrade",
"--quiet", "--quiet",
"--noconfirm", "--noconfirm",
] ]

View file

@ -365,7 +365,7 @@ class TestPacman:
# for real # for real
False, False,
{ {
"args": ["pacman", "--sync", "--sys-upgrade", "--quiet", "--noconfirm"], "args": ["pacman", "--sync", "--sysupgrade", "--quiet", "--noconfirm"],
"return_value": [0, "stdout", "stderr"], "return_value": [0, "stdout", "stderr"],
}, },
None, None,
@ -377,7 +377,7 @@ class TestPacman:
"args": [ "args": [
"pacman", "pacman",
"--sync", "--sync",
"--sys-upgrade", "--sysupgrade",
"--quiet", "--quiet",
"--noconfirm", "--noconfirm",
"--some", "--some",