feat: initial commit

This commit is contained in:
Simon Cornet 2026-02-18 16:50:13 +01:00
commit 718146cd88
15 changed files with 293 additions and 0 deletions

17
playbook.yaml Normal file
View file

@ -0,0 +1,17 @@
---
- name: "install phpipam"
hosts: "all"
become: true
tasks:
- name: "force-update requirements"
ansible.builtin.command:
cmd: "ansible-galaxy install -f -r roles/requirements.yml"
become: false
delegate_to: "localhost"
changed_when: false
failed_when: false
- name: "execute role: phpipam"
ansible.builtin.include_role:
name: "phpipam"