mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix snap's channel option. (#3028)
This commit is contained in:
parent
7734430f23
commit
7b9687f758
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),
|
actionable_snaps=dict(fmt=lambda v: v),
|
||||||
state=dict(fmt=_state_map),
|
state=dict(fmt=_state_map),
|
||||||
classic=dict(fmt="--classic", style=ArgFormat.BOOLEAN),
|
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
|
check_rc = False
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue