From 86351a6241009c6b60ac95eb34593322176b6dc0 Mon Sep 17 00:00:00 2001 From: Jose Date: Fri, 10 Oct 2025 20:40:00 +0200 Subject: [PATCH] =?UTF-8?q?fix=20=F0=9F=90=9B:=20Update=20ansible=5Fsamba?= =?UTF-8?q?=5Fdomain=5Fmember=20role=20to=20use=20SSH=20URL=20for=20reposi?= =?UTF-8?q?tory=20source?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `requirements.yml` file was updated to use the SSH URL for the ansible_samba_domain_member role, ensuring secure access to the repository. This change addresses a potential security risk associated with using HTTPS URLs. --- roles/requirements.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/requirements.yml b/roles/requirements.yml index afc968d..fdfd165 100644 --- a/roles/requirements.yml +++ b/roles/requirements.yml @@ -1,6 +1,6 @@ # requirements.yml - name: ansible_samba_domain_member - src: git@repo.piave7.duckdns.org/Jose/ansible_samba_domain_member.git # <-- Use the SSH URL + src: git@repo.piave7.duckdns.org:Jose/ansible_samba_domain_member.git # <-- Use the SSH URL scm: git version: master # or a specific tag/branch like 'v1.0.0'