chore: rename .yaml extensions to .yml for consistency

This commit is contained in:
2026-04-14 13:32:39 -04:00
parent ac3859047c
commit b2379e597e
24 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
---
- ansible.builtin.include_tasks: stop.yaml
- name: Delete a container
community.general.proxmox:
<<: "{{ proxmox_api_connection }}"
vmid: "{{ lxc_vmid | default(omit) }}"
hostname: "{{ lxc_hostname | default(omit) }}"
state: absent
register: delete_result
failed_when: |
delete_result.failed and
('does not exist' not in delete_result.msg)