summaryrefslogtreecommitdiffstats
path: root/abs/core/dbus-core/dbus.install
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2014-04-16 16:37:16 (GMT)
committerBritney Fransen <brfransen@gmail.com>2014-04-16 16:37:16 (GMT)
commiteb65e92be2f22c5b0047bbd4e36460e7628f3c08 (patch)
tree077387215c90d551cfe62f0c8c17c5919e37e2fc /abs/core/dbus-core/dbus.install
parent041d38fb3be61ecc369a0ecea30b8f8861877b7e (diff)
downloadlinhes_pkgbuild-eb65e92be2f22c5b0047bbd4e36460e7628f3c08.zip
linhes_pkgbuild-eb65e92be2f22c5b0047bbd4e36460e7628f3c08.tar.gz
linhes_pkgbuild-eb65e92be2f22c5b0047bbd4e36460e7628f3c08.tar.bz2
dbus-core: remove; included in dbus
Diffstat (limited to 'abs/core/dbus-core/dbus.install')
-rw-r--r--abs/core/dbus-core/dbus.install23
1 files changed, 0 insertions, 23 deletions
diff --git a/abs/core/dbus-core/dbus.install b/abs/core/dbus-core/dbus.install
deleted file mode 100644
index f1ffd61..0000000
--- a/abs/core/dbus-core/dbus.install
+++ /dev/null
@@ -1,23 +0,0 @@
-post_install() {
- getent group dbus >/dev/null || groupadd -g 81 dbus
- getent passwd dbus >/dev/null || useradd -c 'System message bus' -u 81 -g dbus -d '/' -s /bin/false dbus
- passwd -l dbus &>/dev/null
-}
-
-post_upgrade() {
- post_install
-
- # Make sure new rc script can shutdown running dbus
- if [ -f run/dbus.pid -a -d run/dbus ]; then
- mv run/dbus.pid run/dbus/pid
- fi
-}
-
-post_remove() {
- if getent passwd dbus >/dev/null; then
- userdel dbus
- fi
- if getent group dbus >/dev/null; then
- groupdel dbus
- fi
-}