summaryrefslogtreecommitdiffstats
path: root/abs/core/dbus/dbus
diff options
context:
space:
mode:
authorMichael Hanson <hansonorders@verizon.net>2010-11-16 03:46:13 (GMT)
committerMichael Hanson <hansonorders@verizon.net>2010-11-16 03:46:13 (GMT)
commit9489701f54d6628e484af822b961c34d7b511e57 (patch)
tree85cc4dbb7d11024b011c57ec11ee7f3707e7d0fd /abs/core/dbus/dbus
parentede1a8d31ec57aa9d4850444b4a14ac14734c9b4 (diff)
downloadlinhes_pkgbuild-9489701f54d6628e484af822b961c34d7b511e57.zip
linhes_pkgbuild-9489701f54d6628e484af822b961c34d7b511e57.tar.gz
linhes_pkgbuild-9489701f54d6628e484af822b961c34d7b511e57.tar.bz2
file cleanup
Diffstat (limited to 'abs/core/dbus/dbus')
-rw-r--r--abs/core/dbus/dbus57
1 files changed, 0 insertions, 57 deletions
diff --git a/abs/core/dbus/dbus b/abs/core/dbus/dbus
deleted file mode 100644
index cd26db8..0000000
--- a/abs/core/dbus/dbus
+++ /dev/null
@@ -1,57 +0,0 @@
-#!/bin/bash
-
-# general config
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-case "$1" in
- start)
- stat_busy "Starting D-BUS system messagebus"
- if [ ! -x /var/run/dbus ] ; then
- install -m755 -g 81 -o 81 -d /var/run/dbus
- fi
- if [ -x /usr/bin/dbus-uuidgen ] ; then
- /usr/bin/dbus-uuidgen --ensure
- fi
-
- /usr/bin/dbus-daemon --system
- if [ $? -gt 0 ]; then
- stat_fail
- else
- add_daemon dbus
- stat_done
- fi
- ;;
- stop)
- stat_busy "Stopping D-BUS system messagebus"
- [ -f /var/run/dbus.pid ] && kill `cat /var/run/dbus.pid`
- if [ $? -gt 0 ]; then
- stat_fail
- else
- rm -f /var/run/dbus.pid
- rm_daemon dbus
- stat_done
- fi
- ;;
- restart)
- $0 stop
- sleep 1
- $0 start
- ;;
- reload)
- stat_busy "Reloading D-BUS configuration"
- [ -f /var/run/dbus.pid ] && /usr/bin/dbus-send \
- --system --type=method_call \
- --dest=org.freedesktop.DBus \
- / org.freedesktop.DBus.ReloadConfig
- if [ $? -gt 0 ]; then
- stat_fail
- else
- stat_done
- fi
- ;;
- *)
- echo "usage: $0 {start|stop|restart|reload}"
- ;;
-esac
-exit 0