feat: move playbook to implementation repository

This commit is contained in:
Simon Cornet 2026-04-05 18:16:35 +02:00
commit e27f3fd7ca
3 changed files with 2 additions and 28 deletions

View file

@ -1,21 +0,0 @@
---
# execute this role
- name: "install and configure Pangolin"
hosts: "all"
become: true
tasks:
# due to semaphore bug we need to do this ourselves
- 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
# execute the role
- name: "execute role: pangolin"
ansible.builtin.include_role:
name: "pangolin"