mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
pacman: fix upgrade: yes (#4275)
* s/sys-upgrade/sysupgrade/ * changelog fragment * yamllint * more fragment tweaks
This commit is contained in:
parent
2b0b780ccb
commit
b9f62bb4ef
3 changed files with 6 additions and 3 deletions
3
changelogs/fragments/4275-pacman-sysupgrade.yml
Normal file
3
changelogs/fragments/4275-pacman-sysupgrade.yml
Normal 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).
|
|
@ -410,7 +410,7 @@ class Pacman(object):
|
|||
cmd = [
|
||||
self.pacman_path,
|
||||
"--sync",
|
||||
"--sys-upgrade",
|
||||
"--sysupgrade",
|
||||
"--quiet",
|
||||
"--noconfirm",
|
||||
]
|
||||
|
|
|
@ -365,7 +365,7 @@ class TestPacman:
|
|||
# for real
|
||||
False,
|
||||
{
|
||||
"args": ["pacman", "--sync", "--sys-upgrade", "--quiet", "--noconfirm"],
|
||||
"args": ["pacman", "--sync", "--sysupgrade", "--quiet", "--noconfirm"],
|
||||
"return_value": [0, "stdout", "stderr"],
|
||||
},
|
||||
None,
|
||||
|
@ -377,7 +377,7 @@ class TestPacman:
|
|||
"args": [
|
||||
"pacman",
|
||||
"--sync",
|
||||
"--sys-upgrade",
|
||||
"--sysupgrade",
|
||||
"--quiet",
|
||||
"--noconfirm",
|
||||
"--some",
|
||||
|
|
Loading…
Reference in a new issue