polkit: fix permissions of /usr/share/polkit-1/rules.d/ again

Commit d89fc818b7 changed the
permissions back to 700, which is wrong for /usr/share, these
files are intended to be world readable. Change it back.

Fixes: d89fc818b7 ("polkit: Install rules in subdir")

Signed-off-by: Luca Boccassi <luca.boccassi@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Luca Boccassi 2025-01-15 16:23:49 +00:00 committed by Khem Raj
parent b35e75fe04
commit d37bf86224

View File

@ -7,7 +7,7 @@ REQUIRED_DISTRO_FEATURES = "polkit"
inherit useradd
do_install:prepend() {
install -m 700 -d ${D}${datadir}/polkit-1/rules.d
install -m 755 -d ${D}${datadir}/polkit-1/rules.d
}
FILES:${PN} += "${datadir}/polkit-1/rules.d"