15 lines
209 B
YAML
15 lines
209 B
YAML
|
---
|
||
|
# This playbook deploys the mainserver
|
||
|
|
||
|
- name: apply configuration to the mainserver
|
||
|
hosts: all
|
||
|
remote_user: andi
|
||
|
become: yes
|
||
|
vars:
|
||
|
foo_pwd: 123
|
||
|
|
||
|
roles:
|
||
|
- ldap
|
||
|
# - krb5-kdc-ldap
|
||
|
|