From d72e207a29533afc5314b595610de841bccaf603 Mon Sep 17 00:00:00 2001 From: Jose Date: Sat, 7 Feb 2026 09:19:12 +0100 Subject: [PATCH] =?UTF-8?q?chore=20=F0=9F=93=A6:=20Update=20Proxmox=20repo?= =?UTF-8?q?=20configuration=20with=20file=20permissions=20and=20ownership?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit updates the Proxmox repository configuration to include specific file permissions and ownership settings. This ensures that the repository is properly secured and accessible by authorized users. ✔ Explicit ownership ✔ Explicit permissions ✔ Idempotent --- tasks/repos.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tasks/repos.yml b/tasks/repos.yml index 62b929b..37da939 100644 --- a/tasks/repos.yml +++ b/tasks/repos.yml @@ -10,6 +10,9 @@ - name: repos | Enable Proxmox no-subscription repo ansible.builtin.copy: dest: /etc/apt/sources.list.d/pve-no-subscription.list + owner: root + group: root + mode: "0644" content: | deb http://download.proxmox.com/debian/pve {{ ansible_distribution_release }} pve-no-subscription notify: apt update