[oe-commits] Koen Kooi : policykit: create polkituser

GIT User account git at amethyst.openembedded.net
Wed Dec 3 10:33:29 UTC 2008


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 9738e8c6f278acb82e37e9041b2d6c24699edbbd
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=9738e8c6f278acb82e37e9041b2d6c24699edbbd

Author: Koen Kooi <koen at openembedded.org>
Date:   Wed Dec  3 11:31:44 2008 +0100

policykit: create polkituser

---

 packages/policykit/policykit_0.9.bb |   18 ++++++++++++++++++
 1 files changed, 18 insertions(+), 0 deletions(-)

diff --git a/packages/policykit/policykit_0.9.bb b/packages/policykit/policykit_0.9.bb
index 38d86af..3fb5dc7 100644
--- a/packages/policykit/policykit_0.9.bb
+++ b/packages/policykit/policykit_0.9.bb
@@ -1,6 +1,8 @@
 HOMEPAGE = "http://www.packagekit.org/"
 DEPENDS = "libpam expat dbus-glib"
 
+PR = "r1"
+
 SRC_URI = "http://hal.freedesktop.org/releases/PolicyKit-${PV}.tar.gz"
 
 EXTRA_OECONF = "--with-authfw=pam --with-os-type=moblin --disable-man-pages --disable-gtk-doc"
@@ -17,3 +19,19 @@ FILES_${PN} += " ${datadir}/dbus-1 \
                  ${datadir}/PolicyKit \
                "
 
+pkg_postinst_${PN} () {
+    # can't do this offline
+    if [ "x$D" != "x" ]; then
+        exit 1
+    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 Avahi
+    DBUSPID=`pidof dbus-daemon`
+    if [ "x$DBUSPID" != "x" ]; then
+        /etc/init.d/dbus-1 force-reload
+    fi
+}
+
+pkg_postrm_${PN} () {
+    deluser polkituser || true
+    delgroup polkituser || true
+}





More information about the Openembedded-commits mailing list