dbus: do not remove user/group if updating, bumprev.
--HG-- extra : convert_revision : d56d6ef7a5e719877584f30bce20d03f46603d12
This commit is contained in:
parent
e912759c27
commit
9cac065765
2 changed files with 5 additions and 3 deletions
|
@ -3,8 +3,10 @@
|
|||
#
|
||||
case "${ACTION}" in
|
||||
pre)
|
||||
userdel dbus 2>&1 >/dev/null
|
||||
[ $? -eq 0 ] && echo "Removed ${PKGNAME} system user/group."
|
||||
if [ "$UPDATE" = "no" ]; then
|
||||
userdel dbus 2>&1 >/dev/null
|
||||
[ $? -eq 0 ] && echo "Removed dbus system user/group."
|
||||
fi
|
||||
;;
|
||||
post)
|
||||
;;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'dbus'
|
||||
pkgname=dbus
|
||||
version=1.2.16
|
||||
revision=2
|
||||
revision=3
|
||||
distfiles="http://dbus.freedesktop.org/releases/dbus/$pkgname-$version.tar.gz"
|
||||
build_style=gnu_configure
|
||||
configure_args="--disable-selinux --enable-userdb-cache --with-xml=expat
|
||||
|
|
Loading…
Reference in a new issue