]> freie-schul-it.de Git - fsit_smgt.git/blobdiff - tasks/main.yml
den Task fuer lighttpd hinzugefuegt
[fsit_smgt.git] / tasks / main.yml
index 65609e087b38c4e0ba899015918001621d746d2c..26095b958f6a8003e26d486797df7c0dd6eac556 100644 (file)
@@ -1,11 +1,18 @@
 ---
-- name: Include bootstrap
+- name: Bootstrapping 
   ansible.builtin.include_tasks: bootstrap.yml
-- name: openldap-server
+- name: OpenLDAP-Server
   ansible.builtin.include_tasks: openldap.yml
-  when: ldap in group_names 
+  when: ("ldap" in group_names) 
 - name: Samba-Fileserver
-  ansible.buitlin.include_tasks: samba.yml
-  when: samba in group_names
+  ansible.builtin.include_tasks: samba.yml
+  when: ("samba" in group_names)
+- 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