mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-22 16:02:24 +02:00
19 lines
643 B
YAML
19 lines
643 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: "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: "oidc_settings.yml" |