mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 15:06:26 +02:00
Moved blocks to include_tasks to raise performance. Deploy was really slow
This commit is contained in:
@@ -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
|
Reference in New Issue
Block a user