dbus: use trigger to (un)register system user/groups, bumprev.
--HG-- extra : convert_revision : f0bdecf7321737bf31c020b5f4a9d4355d1c8f2b
This commit is contained in:
parent
f12fb67c20
commit
721938a34e
3 changed files with 4 additions and 31 deletions
|
@ -1,27 +1,12 @@
|
||||||
#
|
#
|
||||||
# This script fixes permissions for dbus-daemon-launch-helper
|
# This script fixes permissions for dbus-daemon-launch-helper.
|
||||||
# and creates the dbus system user/group.
|
|
||||||
#
|
#
|
||||||
dbus_launch="./usr/libexec/dbus-daemon-launch-helper"
|
dbus_launch=usr/libexec/dbus-daemon-launch-helper
|
||||||
|
|
||||||
case "${ACTION}" in
|
case "${ACTION}" in
|
||||||
pre)
|
pre)
|
||||||
;;
|
;;
|
||||||
post)
|
post)
|
||||||
echo "Running ${PKGNAME}-${VERSION} post installation hooks..."
|
|
||||||
if ! getent group dbus >/dev/null; then
|
|
||||||
groupadd -r dbus 2>&1 >/dev/null
|
|
||||||
[ $? -ne 0 ] && exit $?
|
|
||||||
echo "Created dbus system group."
|
|
||||||
fi
|
|
||||||
if ! getent passwd dbus >/dev/null; then
|
|
||||||
useradd -c "System message bus" \
|
|
||||||
-d /var/run/dbus \
|
|
||||||
-s /sbin/nologin -g dbus -r dbus && \
|
|
||||||
passwd -l dbus 2>&1 >/dev/null
|
|
||||||
[ $? -ne 0 ] && exit $?
|
|
||||||
echo "Created dbus system user."
|
|
||||||
fi
|
|
||||||
chown root:dbus ${dbus_launch}
|
chown root:dbus ${dbus_launch}
|
||||||
chmod 4750 ${dbus_launch}
|
chmod 4750 ${dbus_launch}
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
#
|
|
||||||
# This script removes the dbus user/group.
|
|
||||||
#
|
|
||||||
case "${ACTION}" in
|
|
||||||
pre)
|
|
||||||
if [ "$UPDATE" = "no" ]; then
|
|
||||||
userdel dbus 2>&1 >/dev/null
|
|
||||||
[ $? -eq 0 ] && echo "Removed dbus system user/group."
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
post)
|
|
||||||
;;
|
|
||||||
esac
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'dbus'
|
# Template file for 'dbus'
|
||||||
pkgname=dbus
|
pkgname=dbus
|
||||||
version=1.2.16
|
version=1.2.16
|
||||||
revision=3
|
revision=4
|
||||||
distfiles="http://dbus.freedesktop.org/releases/dbus/$pkgname-$version.tar.gz"
|
distfiles="http://dbus.freedesktop.org/releases/dbus/$pkgname-$version.tar.gz"
|
||||||
build_style=gnu_configure
|
build_style=gnu_configure
|
||||||
configure_args="--disable-selinux --enable-userdb-cache --with-xml=expat
|
configure_args="--disable-selinux --enable-userdb-cache --with-xml=expat
|
||||||
|
@ -25,6 +25,7 @@ keep_empty_dirs=yes
|
||||||
conf_files="/etc/dbus-1/session.conf /etc/dbus-1/system.conf"
|
conf_files="/etc/dbus-1/session.conf /etc/dbus-1/system.conf"
|
||||||
subpackages="$pkgname-devel $pkgname-libs"
|
subpackages="$pkgname-devel $pkgname-libs"
|
||||||
openrc_services="dbus default"
|
openrc_services="dbus default"
|
||||||
|
system_accounts="dbus"
|
||||||
|
|
||||||
Add_dependency full glibc
|
Add_dependency full glibc
|
||||||
Add_dependency full expat
|
Add_dependency full expat
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue