11 lines
283 B
YAML
Executable File
11 lines
283 B
YAML
Executable File
---
|
|
- name: Start the LXC container
|
|
community.proxmox.proxmox:
|
|
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)
|