mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-28 18:30:24 +02:00
26 lines
761 B
YAML
26 lines
761 B
YAML
---
|
|
- name: "Install OpenID Connect Generic Plugin via WP CLI"
|
|
command: >
|
|
docker-compose exec -u www-data -T application
|
|
wp plugin install daggerhart-openid-connect-generic
|
|
--path={{ wordpress_docker_html_path }}
|
|
args:
|
|
chdir: "{{ docker_compose.directories.instance }}"
|
|
|
|
- name: Wait for Discourse API
|
|
wait_for:
|
|
host: "{{ domains.discourse }}"
|
|
port: 80
|
|
delay: 5
|
|
timeout: 600
|
|
|
|
- name: "Activate OpenID Connect Generic Plugin"
|
|
command: >
|
|
docker-compose exec -u www-data -T application
|
|
wp plugin activate daggerhart-openid-connect-generic
|
|
--path={{ wordpress_docker_html_path }}
|
|
args:
|
|
chdir: "{{ docker_compose.directories.instance }}"
|
|
|
|
- name: "Setup OIDC settings"
|
|
include_tasks: "settings.yml" |