mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-15 16:40:45 +02:00
53 lines
1.7 KiB
YAML
53 lines
1.7 KiB
YAML
---
|
|
- name: "load docker and db for {{application_id}}"
|
|
include_role:
|
|
name: cmp-db-docker
|
|
|
|
- name: "Include role srv-proxy-6-6-domain for {{ application_id }}"
|
|
include_role:
|
|
name: srv-proxy-6-6-domain
|
|
loop: "{{ wordpress_domains }}"
|
|
loop_control:
|
|
loop_var: domain
|
|
vars:
|
|
proxy_extra_configuration: "client_max_body_size {{ wordpress_max_upload_size }};"
|
|
http_port: "{{ ports.localhost.http[application_id] }}"
|
|
|
|
- name: "Transfering upload.ini to {{ docker_compose.directories.instance }}"
|
|
template:
|
|
src: upload.ini.j2
|
|
dest: "{{ docker_compose.directories.instance }}upload.ini"
|
|
notify: docker compose up
|
|
|
|
- name: "Transfering msmtprc to {{ host_msmtp_conf }}"
|
|
template:
|
|
src: "{{ playbook_dir }}/roles/sys-svc-msmtp/templates/msmtprc.conf.j2"
|
|
dest: "{{ host_msmtp_conf }}"
|
|
notify: docker compose up
|
|
|
|
- name: Check if wp-config.php exists in WordPress
|
|
command: docker exec -u {{ wordpress_user }} {{ wordpress_container }} test -f {{ wordpress_docker_html_path }}/wp-config.php
|
|
register: wp_config_file_exists
|
|
changed_when: false
|
|
failed_when: false
|
|
|
|
- name: Patch WordPress wp-config.php with updated DB credentials
|
|
include_tasks: 01_patch_config.yml
|
|
when: wp_config_file_exists.rc == 0
|
|
|
|
- name: "Install wordpress"
|
|
include_tasks: 02_install.yml
|
|
|
|
- name: "Install and activate WordPress plugins"
|
|
block:
|
|
- name: "Iterate through WordPress plugins"
|
|
include_tasks: 03_enable_plugin.yml
|
|
loop: "{{ wordpress_plugins }}"
|
|
loop_control:
|
|
label: "{{ item.key }}"
|
|
vars:
|
|
plugin_name: "{{ item.key }}"
|
|
plugin_enabled: "{{ item.value.enabled | bool }}"
|
|
plugin_task_path: "{{ role_path }}/tasks/plugins/{{ plugin_name }}/install.yml"
|
|
when: plugin_enabled
|