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

View File

@@ -7,4 +7,5 @@
- role: cms_preparation
- role: setup_database
- role: configure_cms
- role: configure_haproxy
- role: add_helper_scripts

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