Moved blocks to include_tasks to raise performance. Deploy was really slow

This commit is contained in:
2025-08-11 12:28:31 +02:00
parent b6e571a496
commit 6e04ac58d2
52 changed files with 609 additions and 628 deletions

View File

@@ -7,8 +7,19 @@
include_tasks: 01_ldap.yml
when: applications | get_app_conf(application_id, 'features.ldap', False)
- name: Update Friendica DB credentials
include_tasks: 02_database.yml
# General
- name: "flush handlers to ensure that '{{ friendica_container }}' is up before executing container tasks"
meta: flush_handlers
- name: Check if Friendica local.config.php exists
command: docker exec --user {{ friendica_user }} {{ friendica_container }} test -f {{ friendica_config_file }}
register: friendica_config_exists
changed_when: false
failed_when: false
- name: Patch Friendica local.config.php with updated DB credentials
include_tasks: 02_patch_config.yml
when: friendica_config_exists.rc == 0
- name: Add Friendica Add Ons
include_tasks: 03_addons.yml