From 19b357a9b2ac26950e41e14db8c6f146179cca18 Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Fri, 8 May 2026 15:44:26 +0200 Subject: [PATCH] feat: move deps to playbook Remove galaxy dependencies from role meta and add explicit include_role tasks in the playbook instead. --- meta/main.yaml | 5 +---- playbook.yaml | 5 +++++ 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/meta/main.yaml b/meta/main.yaml index 5ca7579..545d637 100644 --- a/meta/main.yaml +++ b/meta/main.yaml @@ -5,7 +5,4 @@ galaxy_info: description: "install and configure an semaphore server" license: "MIT" role_name: "semaphore" -dependencies: - - name: "docker" - src: "git+https://gitlab.simoncor.net/ansible/ans-docker.git" - version: "main" +dependencies: [] diff --git a/playbook.yaml b/playbook.yaml index 5d4bdd0..1d01808 100644 --- a/playbook.yaml +++ b/playbook.yaml @@ -15,6 +15,11 @@ changed_when: false failed_when: false + # execute the role + - name: "execute role: docker" + ansible.builtin.include_role: + name: "docker" + # execute the role - name: "execute role: semaphore" ansible.builtin.include_role: