fix ansible-test sanity errors
Some checks failed
continuous-integration/drone/pr Build is failing

This commit is contained in:
Robert Kaussow 2023-01-30 22:32:03 +01:00
parent 5dd6bb8661
commit ffa15a72a3
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
4 changed files with 73 additions and 71 deletions

View File

@ -9,7 +9,6 @@ from __future__ import (absolute_import, division, print_function)
__metaclass__ = type __metaclass__ = type
DOCUMENTATION = """ DOCUMENTATION = """
---
name: proxmox name: proxmox
plugin_type: inventory plugin_type: inventory
short_description: Proxmox VE inventory source short_description: Proxmox VE inventory source
@ -75,7 +74,8 @@ options:
description: Toggle, if C(true) the plugin will retrieve host facts from the server description: Toggle, if C(true) the plugin will retrieve host facts from the server
type: boolean type: boolean
default: True default: True
requirements:
- "proxmoxer"
""" # noqa """ # noqa
EXAMPLES = """ EXAMPLES = """
@ -187,7 +187,7 @@ class InventoryModule(BaseInventoryPlugin):
except Exception: # noqa except Exception: # noqa
pass pass
if networks and type(networks) is list: if networks and isinstance(networks, list):
for network in networks: for network in networks:
for ip_address in network["ip-addresses"]: for ip_address in network["ip-addresses"]:
address = validate(ip_address["ip-address"]) address = validate(ip_address["ip-address"])

View File

@ -78,6 +78,7 @@ options:
C(-P)/C(--policy) to specify rules." C(-P)/C(--policy) to specify rules."
required: false required: false
type: str type: str
default: ""
state: state:
description: description:
- The state this rules fragment should be in. - The state this rules fragment should be in.

View File

@ -955,18 +955,18 @@ def create_vm(
# If update, ensure existing disks are not recreated. # If update, ensure existing disks are not recreated.
if update: if update:
for k, _v in disks.items(): for k, v in disks.items():
if results["disks"].get(k): if results["disks"].get(k):
storage_id = results["disks"][k]["storage_id"] storage_id = results["disks"][k]["storage_id"]
storage_opts = results["disks"][k]["storage_opts"] storage_opts = results["disks"][k]["storage_opts"]
opts = ",".join(disks[k]["opts"]) opts = ",".join(v["opts"])
kwargs[k.rstrip(string.digits)][k] = f"{storage_id}:{storage_opts},{opts}" kwargs[k.rstrip(string.digits)][k] = f"{storage_id}:{storage_opts},{opts}"
for k, _v in nets.items(): for k, v in nets.items():
if results["nets"].get(k): if results["nets"].get(k):
net_id = results["nets"][k]["net_id"] net_id = results["nets"][k]["net_id"]
net_opts = results["nets"][k]["net_opts"] net_opts = results["nets"][k]["net_opts"]
opts = ",".join(nets[k]["opts"]) opts = ",".join(v["opts"])
kwargs[k.rstrip(string.digits)][k] = f"{net_id}={net_opts},{opts}" kwargs[k.rstrip(string.digits)][k] = f"{net_id}={net_opts},{opts}"
# Convert all dict in kwargs to elements. # Convert all dict in kwargs to elements.

View File

@ -31,6 +31,7 @@ options:
- New value of the variable - New value of the variable
required: False required: False
type: str type: str
default: ""
state: state:
required: False required: False
default: "present" default: "present"