mirror of
https://github.com/dredx/prole.git
synced 2026-09-27 11:24:30 +00:00
16 lines
357 B
YAML
16 lines
357 B
YAML
---
|
|
- name: Gather service facts
|
|
ansible.builtin.service_facts:
|
|
|
|
- name: Stop k3s services if present
|
|
ansible.builtin.service:
|
|
name: "{{ item }}"
|
|
state: stopped
|
|
enabled: false
|
|
loop:
|
|
- k3s
|
|
- k3s-agent
|
|
when:
|
|
- (item + ".service") in ansible_facts.services
|
|
- ansible_facts.services[item + ".service"].status != 'not-found'
|