dbus: (INSTALL) also run getent via chroot.
--HG-- extra : convert_revision : 201163531cb8e1ecca7b974ab2654717755fb669
This commit is contained in:
parent
7ad4be592f
commit
4e87160dec
|
@ -9,16 +9,18 @@ pre)
|
|||
;;
|
||||
post)
|
||||
echo "Running $3-$4 post installation hooks..."
|
||||
if getent group dbus >/dev/null; then
|
||||
if ! chroot . getent group dbus >/dev/null; then
|
||||
chroot . groupadd -r dbus
|
||||
[ $? -eq 0 ] && echo "Created dbus system group."
|
||||
[ $? -ne 0 ] && exit $?
|
||||
echo "Created dbus system group."
|
||||
fi
|
||||
if getent passwd dbus >/dev/null; then
|
||||
if ! chroot . getent passwd dbus >/dev/null; then
|
||||
chroot . useradd -c "System message bus" \
|
||||
-d /var/run/dbus \
|
||||
-s /sbin/nologin -g dbus -r dbus && \
|
||||
chroot . passwd -l dbus &>/dev/null
|
||||
[ $? -eq 0 ] && echo "Created dbus system user."
|
||||
[ $? -ne 0 ] && exit $?
|
||||
echo "Created dbus system user."
|
||||
fi
|
||||
chroot . chown root:dbus ${dbus_launch}
|
||||
chroot . chmod 4750 ${dbus_launch}
|
||||
|
|
Loading…
Reference in New Issue