glpi-debian/playbook.yaml

15 lines
218 B
YAML
Raw Permalink Normal View History

2025-08-21 15:31:19 +02:00
---
- 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
...