policykit: fix permissions and volatiles
authorKoen Kooi <koen@openembedded.org>
Fri, 17 Apr 2009 13:13:17 +0000 (15:13 +0200)
committerKoen Kooi <koen@openembedded.org>
Fri, 17 Apr 2009 13:13:17 +0000 (15:13 +0200)
recipes/policykit/policykit_0.9.bb

index c7ba718..28cbb11 100644 (file)
@@ -1,7 +1,7 @@
 HOMEPAGE = "http://www.packagekit.org/"
 DEPENDS = "libpam expat dbus-glib"
 
-PR = "r3"
+PR = "r4"
 
 SRC_URI = "http://hal.freedesktop.org/releases/PolicyKit-${PV}.tar.gz"
 
@@ -26,7 +26,41 @@ pkg_postinst_${PN} () {
     fi
     grep "^polkituser:" /etc/group > /dev/null || addgroup polkituser
     grep "^polkituser:" /etc/passwd > /dev/null || adduser --disabled-password --system --home /var/run/polkit polkituser --ingroup polkituser -g polkituser 
-    DBUSPID=`pidof dbus-daemon`
+
+       echo "d root polkituser 0770 /var/run/PolicyKit none" > /etc/default/volatiles/98_policykit
+       rm -f /etc/volatile.cache 
+
+       # Fix owners
+       for i in /var/lib/PolicyKit /usr/libexec/polkit-read-auth-helper /usr/libexec/polkit-revoke-helper /usr/libexec/polkit-grant-helper /usr/libexec/polkit-explicit-grant-helper /usr/libexec/polkit-grant-helper-pam ; do
+               chown root:polkituser $i
+       done
+
+       for i in /var/lib/PolicyKit-public /usr/libexec/polkit-set-default-helper ; do
+               chown polkituser:root $i
+       done
+
+       chown polkituser:polkituser /var/lib/misc/PolicyKit.reload
+       chown root:root /usr/libexec/polkit-resolve-exe-helper
+       # Fix permissions
+       for i in /var/run/PolicyKit /var/lib/PolicyKit ; do
+               chmod 770 $i
+       done
+
+       chmod 755 /var/lib/PolicyKit-public
+       chmod 775 /var/lib/misc/PolicyKit.reload
+
+       for i in /usr/libexec/polkit-read-auth-helper /usr/libexec/polkit-revoke-helper /usr/libexec/polkit-grant-helper /usr/libexec/polkit-explicit-grant-helper ; do
+               chmod 2755 $i
+       done
+
+       for i in /usr/libexec/polkit-set-default-helper /usr/libexec/polkit-resolve-exe-helper ; do
+               chmod 4755 $i
+       done
+
+       chmod 4754 /usr/libexec/polkit-grant-helper-pam
+
+       DBUSPID=`pidof dbus-daemon`
     if [ "x$DBUSPID" != "x" ]; then
         /etc/init.d/dbus-1 force-reload
     fi
@@ -35,4 +69,6 @@ pkg_postinst_${PN} () {
 pkg_postrm_${PN} () {
     deluser polkituser || true
     delgroup polkituser || true
+       rm -f /etc/default/volatiles/98_policykit
+    rm -f /etc/volatile.cache  
 }