feat: initial commit
This commit is contained in:
commit
718146cd88
15 changed files with 293 additions and 0 deletions
17
playbook.yaml
Normal file
17
playbook.yaml
Normal 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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue