mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Updated tags delimiter (#5602)
* Updated tags delimiter Starting from Proxmox 7.3 tags are delimited by semicolon. For backward compatibility it needs to be splitted by both commas and semicolons. * Added missing space * Add changelog fragment. Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
be22ca0633
commit
632fc07e65
2 changed files with 3 additions and 1 deletions
2
changelogs/fragments/5602-proxmox-tags.yml
Normal file
2
changelogs/fragments/5602-proxmox-tags.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
bugfixes:
|
||||||
|
- "proxmox inventory plugin - handle tags delimited by semicolon instead of comma, which happens from Proxmox 7.3 on (https://github.com/ansible-collections/community.general/pull/5602)."
|
|
@ -408,7 +408,7 @@ class InventoryModule(BaseInventoryPlugin, Constructable, Cacheable):
|
||||||
stripped_value = value.strip()
|
stripped_value = value.strip()
|
||||||
if stripped_value:
|
if stripped_value:
|
||||||
parsed_key = key + "_parsed"
|
parsed_key = key + "_parsed"
|
||||||
properties[parsed_key] = [tag.strip() for tag in stripped_value.split(",")]
|
properties[parsed_key] = [tag.strip() for tag in stripped_value.replace(',', ';').split(";")]
|
||||||
|
|
||||||
# The first field in the agent string tells you whether the agent is enabled
|
# The first field in the agent string tells you whether the agent is enabled
|
||||||
# the rest of the comma separated string is extra config for the agent.
|
# the rest of the comma separated string is extra config for the agent.
|
||||||
|
|
Loading…
Reference in a new issue