glpi-debian/playbook.yaml
2025-08-21 15:31:19 +02:00

14 lines
218 B
YAML

---
- 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
...