10 lines
236 B
YAML
10 lines
236 B
YAML
|
---
|
||
|
- name: Remove the file to resume Cosmos
|
||
|
hosts: all
|
||
|
become: yes
|
||
|
tasks:
|
||
|
- name: Remove the file /etc/no-automatic-cosmos if it exists
|
||
|
ansible.builtin.file:
|
||
|
path: /etc/no-automatic-cosmos
|
||
|
state: absent
|