mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
(cherry picked from commit 7b9687f758
)
Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
e1aad0db30
commit
f0d6fcb3fa
2 changed files with 3 additions and 1 deletions
2
changelogs/fragments/3028-snap-channel.yml
Normal file
2
changelogs/fragments/3028-snap-channel.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- "snap - fix formatting of ``--channel`` argument when the ``channel`` option is used (https://github.com/ansible-collections/community.general/pull/3028)."
|
|
@ -145,7 +145,7 @@ class Snap(CmdStateModuleHelper):
|
|||
actionable_snaps=dict(fmt=lambda v: v),
|
||||
state=dict(fmt=_state_map),
|
||||
classic=dict(fmt="--classic", style=ArgFormat.BOOLEAN),
|
||||
channel=dict(fmt=lambda v: [] if v == 'stable' else ['--channel', '{0}']),
|
||||
channel=dict(fmt=lambda v: [] if v == 'stable' else ['--channel', '{0}'.format(v)]),
|
||||
)
|
||||
check_rc = False
|
||||
|
||||
|
|
Loading…
Reference in a new issue