mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 23:08:06 +02:00
15 lines
308 B
YAML
15 lines
308 B
YAML
- name: "Run LDAP diagnose"
|
|
command:
|
|
argv:
|
|
- docker
|
|
- exec
|
|
- "{{ JOOMLA_CONTAINER }}"
|
|
- php
|
|
- /var/www/html/cli/ldap-diagnose.php
|
|
- "--username={{ users.administrator.username }}"
|
|
register: ldap_diag
|
|
changed_when: false
|
|
|
|
- debug:
|
|
var: ldap_diag.stdout_lines
|