X-Git-Url: https://freie-schul-it.de/gitweb/fsit_smgt.git/blobdiff_plain/4b14ff726438b043d9ecfacb4c148af9f990c130..217806e225b441e806b4eeb4f799c354d22d0b2d:/tasks/main.yml?ds=inline diff --git a/tasks/main.yml b/tasks/main.yml index 61b5f24..39a0128 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -1,6 +1,9 @@ --- -- name: Bootstrapping all server +- name: Bootstrapping ansible.builtin.include_tasks: bootstrap.yml +- name: DNS-Server mit pi-hole + ansible.builtin.include_tasks: pihole.yml + when: ("pihole" in group_names) - name: OpenLDAP-Server ansible.builtin.include_tasks: openldap.yml when: ("ldap" in group_names) @@ -10,7 +13,9 @@ - name: Forgejo Git- und Projekte-Server ansible.builtin.include_tasks: forgejo.yml when: ("forgejo" in group_names) -# +- name: einfache Webserver mit lighttpd + ansible.builtin.include_tasks: lighttpd.yml + when: ("lighttpd" in group_names) # Inventory immer als letztes -#- name: Include inventory (last task) -# ansible.builtin.include_tasks: inventory.yml +- name: Include inventory (last task) + ansible.builtin.include_tasks: inventory.yml