initial commit

This commit is contained in:
Johann 2025-08-21 15:31:19 +02:00
commit 8e27e10f26
12 changed files with 202 additions and 0 deletions

14
playbook.yaml Normal file
View file

@ -0,0 +1,14 @@
---
- name: Install GLPI
hosts: ungrouped
remote_user: root
pre_tasks:
- name: Update APT packages indexes
ansible.builtin.apt:
update_cache: true
roles:
- nginx
- php
- glpi
...