Rolle DNS Registrierung hinzugefügt

This commit is contained in:
Stefan Mewes
2026-03-20 18:16:35 +01:00
parent f8aeb9c1e6
commit 63a6aec81d
5 changed files with 248 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
- name: DNS-Modus anzeigen
ansible.builtin.debug:
msg: "DNS-Modus ist '{{ dns_registrierung_modus }}'"
- name: Installation ausführen
ansible.builtin.include_tasks: install.yml
when: dns_registrierung_modus | lower == "install"
- name: Entfernung ausführen
ansible.builtin.include_tasks: remove.yml
when: dns_registrierung_modus | lower == "remove"