summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2008-12-03 12:30:22 +0100
committerKoen Kooi <koen@openembedded.org>2008-12-03 12:30:22 +0100
commit7477b63f8a1a2b5509d82f197de62eb2ef6b5e99 (patch)
treed6d017b8a8bcdbaafd8ca67a99c874a0adae09c7
parentb24fb5c048ca45273a20ee97e1c35b8d6655563d (diff)
policykit: fix c/p error spotted by Philipp Zabel
-rw-r--r--packages/policykit/policykit_0.9.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/policykit/policykit_0.9.bb b/packages/policykit/policykit_0.9.bb
index 3fb5dc72d8..d8648ea63f 100644
--- a/packages/policykit/policykit_0.9.bb
+++ b/packages/policykit/policykit_0.9.bb
@@ -1,7 +1,7 @@
HOMEPAGE = "http://www.packagekit.org/"
DEPENDS = "libpam expat dbus-glib"
-PR = "r1"
+PR = "r2"
SRC_URI = "http://hal.freedesktop.org/releases/PolicyKit-${PV}.tar.gz"
@@ -24,7 +24,7 @@ pkg_postinst_${PN} () {
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
+ 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`
if [ "x$DBUSPID" != "x" ]; then
/etc/init.d/dbus-1 force-reload