rename .yaml files to .yml for consistency

This commit is contained in:
2026-07-16 16:57:45 -04:00
parent 757ba52377
commit af2fe22bfa
11 changed files with 29 additions and 29 deletions
+1 -1
View File
@@ -34,6 +34,6 @@
when: _compose_type == 'content'
register: compose_file
- ansible.builtin.include_tasks: manage_compose.yaml
- ansible.builtin.include_tasks: manage_compose.yml
when: app_compose_start | default(true)
tags: [deploy]
-14
View File
@@ -1,14 +0,0 @@
---
- ansible.builtin.include_tasks: setup.yaml
tags: [setup, deploy]
- ansible.builtin.include_tasks: restore.yaml
tags: [restore, never]
- ansible.builtin.include_tasks: deploy.yaml
tags: [deploy]
- ansible.builtin.include_tasks: health_check.yaml
tags: [deploy, healthcheck]
- ansible.builtin.include_tasks: backup.yaml
tags: [backup, never]
- ansible.builtin.include_tasks: update.yaml
tags: [update, never]
+14
View File
@@ -0,0 +1,14 @@
---
- ansible.builtin.include_tasks: setup.yml
tags: [setup, deploy]
- ansible.builtin.include_tasks: restore.yml
tags: [restore, never]
- ansible.builtin.include_tasks: deploy.yml
tags: [deploy]
- ansible.builtin.include_tasks: health_check.yml
tags: [deploy, healthcheck]
- ansible.builtin.include_tasks: backup.yml
tags: [backup, never]
- ansible.builtin.include_tasks: update.yml
tags: [update, never]
+1 -1
View File
@@ -19,7 +19,7 @@
register: update_restart
- name: Verify application health after update
ansible.builtin.include_tasks: health_check.yaml
ansible.builtin.include_tasks: health_check.yml
when: app_health_check | default(true)
rescue: