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,11 @@
---
- name: Start the LXC container
community.general.proxmox:
<<: "{{ proxmox_api_connection }}"
vmid: "{{ lxc_result.vmid }}"
state: started
register: start_result
retries: 3
delay: 5
until: start_result is success
failed_when: start_result.failed and ('already running' not in start_result.msg)