mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
ca93145e76
* Parse lxc key from api data for lxc containers
When configuring containers in the `/etc/pve/lxc/` file, the API
adds a 'lxc' key that caused the plugin to crash as it tried to
split a list on ','.
This commit introduces logic to convert the list of lists in the
returned data to a dict as with the other keys.
```
'lxc': [['lxc.apparmor.profile', 'unconfined'],
['lxc.cgroup.devices.allow', 'a']]
```
becomes
```
"proxmox_lxc": {
"apparmor.profile": "unconfined",
"cap.drop": "",
"cgroup.devices.allow": "a"
}
```
* Add changelog fragment
Co-authored-by: Felix Fontein <felix@fontein.de>
Co-authored-by: Philippe Pepos Petitclerc <peposp@gmail.com>
Co-authored-by: Felix Fontein <felix@fontein.de>
(cherry picked from commit
|
||
---|---|---|
.. | ||
.keep | ||
4.8.0.yml | ||
4084-add-redfish-system-indicator-led.yml | ||
4320-nmcli-hairpin.yml | ||
4377-allow-proxmox-snapshot-restoring.yml | ||
4438-fix-error-message.yaml | ||
4455-terraform-provider-upgrade.yml | ||
4457-support-datadog-monitors-type-event-v2.yaml | ||
4459-only-get-monitor-if-it-is-not-null-api-response.yaml | ||
4464-pacman-fix-local-remove.yaml | ||
4465-btrfs-resize.yml | ||
4466-proxmox-ansible_host-deprecation.yml | ||
4471-seport-refactor.yaml | ||
4476-cmd_runner.yml | ||
4479-add-project-support-for-lxd_container-and-lxd_profile.yml | ||
4491-specify_all_in_list_calls.yaml | ||
4492-proxmox_kvm_fix_vm_without_name.yaml | ||
4496-remove-deprecated-method-in-gitlab-branch-module.yml | ||
4506-sudo-in-nmap-inv-plugin.yaml | ||
4524-update-opennebula-inventory-plugin-to-match-documentation.yaml | ||
4526-keycloak-realm-types.yaml | ||
4530-fix-unauthorized-pritunl-request.yaml | ||
4534-xfconf-added-value-types.yaml | ||
4540-proxmox-inventory-token-auth.yml | ||
4555-proxmox-lxc-key.yml | ||
4556-remove-default-none-1.yml | ||
4567-remove-default-none-2.yml |