Merge pull request #205 from RobVerduijn/add_trust_module

added trust module and docs
This commit is contained in:
Thomas Woerner
2020-09-03 17:32:11 +02:00
committed by GitHub
6 changed files with 468 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
---
- name: Playbook to create a trust
hosts: ipaserver
become: true
tasks:
- name: ensure the trust is present
ipatrust:
realm: windows.local
admin: Administrator
password: secret_password
state: present

View File

@@ -0,0 +1,10 @@
---
- name: Playbook to delete trust
hosts: ipaserver
become: true
tasks:
- name: ensure the trust is absent
ipatrust:
realm: windows.local
state: absent