mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 23:08:06 +02:00
- Replaced all lowercase wordpress_* variables with uppercase WORDPRESS_* equivalents - Ensured consistency across tasks, templates, and vars - Improves readability and aligns with naming conventions Conversation: https://chatgpt.com/share/68af29b5-8e7c-800f-bd12-48cc5956311c
29 lines
1.4 KiB
YAML
29 lines
1.4 KiB
YAML
# The seeds need to be executed as root, because www-data isn't allowed to create files in the wordpress directory
|
|
|
|
- name: Update DB host in {{ WORDPRESS_CONFIG_FILE }}
|
|
command: >
|
|
docker exec --user root {{ WORDPRESS_CONTAINER }}
|
|
sed -i "s/define(\s*'DB_HOST'\s*,\s*'[^']*'\s*);/define( 'DB_HOST', '{{ database_host }}:{{ database_port }}' );/i" {{ WORDPRESS_DOCKER_CONF_PATH }}
|
|
notify: docker compose restart
|
|
|
|
- name: Update DB name in {{ WORDPRESS_CONFIG_FILE }}
|
|
command: >
|
|
docker exec --user root {{ WORDPRESS_CONTAINER }}
|
|
sed -i "s/define(\s*'DB_NAME'\s*,\s*'[^']*'\s*);/define( 'DB_NAME', '{{ database_name }}' );/i" {{ WORDPRESS_DOCKER_CONF_PATH }}
|
|
notify: docker compose restart
|
|
|
|
- name: Update DB user in {{ WORDPRESS_CONFIG_FILE }}
|
|
command: >
|
|
docker exec --user root {{ WORDPRESS_CONTAINER }}
|
|
sed -i "s/define(\s*'DB_USER'\s*,\s*'[^']*'\s*);/define( 'DB_USER', '{{ database_username }}' );/i" {{ WORDPRESS_DOCKER_CONF_PATH }}
|
|
notify: docker compose restart
|
|
|
|
- name: Update DB password in {{ WORDPRESS_CONFIG_FILE }}
|
|
command: >
|
|
docker exec --user root {{ WORDPRESS_CONTAINER }}
|
|
sed -i "s/define(\s*'DB_PASSWORD'\s*,\s*'[^']*'\s*);/define( 'DB_PASSWORD', '{{ database_password }}' );/i" {{ WORDPRESS_DOCKER_CONF_PATH }}
|
|
notify: docker compose restart
|
|
no_log: "{{ MASK_CREDENTIALS_IN_LOGS | bool }}"
|
|
|
|
- name: "Flush handlers to reinitialize new database credentials"
|
|
meta: flush_handlers |