From 6884127cbe98cd7881a6f3cba5bfae4f753763b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20B=C3=B6h?= Date: Fri, 13 Dec 2024 06:39:10 +0100 Subject: [PATCH] package/polkit: fix permissions after version bump to 125 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The service failed to start correctly if any custom rules were installed. This commit aligns the permissions with the upstream meson build step. See [1]. [1] https://github.com/polkit-org/polkit/commit/b6169f3113b3ce5ed822e66adcc962850c24660a Signed-off-by: Martin Böh [Julien: - remove unneeded leading zeroes on file permissions - add reference to upstream change in commit log ] Signed-off-by: Julien Olivain --- package/polkit/polkit.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/polkit/polkit.mk b/package/polkit/polkit.mk index fb49f6ce2a..234e1cf415 100644 --- a/package/polkit/polkit.mk +++ b/package/polkit/polkit.mk @@ -56,8 +56,8 @@ define POLKIT_USERS endef define POLKIT_PERMISSIONS - /etc/polkit-1/rules.d d 700 polkitd root - - - - - - /usr/share/polkit-1/rules.d d 700 polkitd root - - - - - + /etc/polkit-1/rules.d d 750 root polkitd - - - - - + /usr/share/polkit-1/rules.d d 750 root polkitd - - - - - /usr/bin/pkexec f 4755 root root - - - - - /usr/lib/polkit-1/polkit-agent-helper-1 f 4755 root root - - - - - endef