Skip to content
Snippets Groups Projects
Verified Commit 90e6cba3 authored by David Mehren's avatar David Mehren
Browse files

Make linter happier

parent 60477415
No related branches found
No related tags found
No related merge requests found
Pipeline #293468 passed
......@@ -17,7 +17,7 @@
- name: "Generate ipconfig options ({{ proxmox_vm_name }})"
ansible.builtin.set_fact:
proxmox_create_vm_qm_args: "{{ proxmox_create_vm_qm_args }} --ipconfig{{ index }} {{ item }} ({{ proxmox_vm_name }})"
proxmox_create_vm_qm_args: "{{ proxmox_create_vm_qm_args }} --ipconfig{{ index }} {{ item }} ({{ proxmox_vm_name }})" # noqa yaml[line-length]
loop: "{{ proxmox_vm_ipconfig_list }}"
loop_control:
index_var: index
......
......@@ -43,7 +43,7 @@
- name: "Convert proxmox_vm_ipconfig to list ({{ proxmox_vm_name }})"
ansible.builtin.set_fact:
proxmox_vm_ipconfig_list: "{{ proxmox_vm_ipconfig is string | ternary([proxmox_vm_ipconfig], proxmox_vm_ipconfig) }}"
proxmox_vm_ipconfig_list: "{{ proxmox_vm_ipconfig is string | ternary([proxmox_vm_ipconfig], proxmox_vm_ipconfig) }}" # noqa yaml[line-length]
- name: "Create new VM ({{ proxmox_vm_name }})"
when: proxmox_vm_name not in proxmox_vm_existing
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment