Fix: aws
All checks were successful
Ansible Playbook lint / ansible-lint (push) Successful in 14s

This commit is contained in:
2024-12-20 22:34:05 +08:00
parent c5e237b9ff
commit c014a0b76e
17 changed files with 199 additions and 68 deletions

14
playbooks/test.yml Normal file
View File

@@ -0,0 +1,14 @@
---
- name: Test
hosts: cms
tasks:
- name: Test
ansible.builtin.file:
path: /poop
check_mode: true
ignore_errors: true
register: poop
- name: Debug
ansible.builtin.debug:
var: poop
when: ! poop.failed