diff options
author | Havoc Pennington <hp@redhat.com> | 2005-01-18 22:20:38 +0000 |
---|---|---|
committer | Havoc Pennington <hp@redhat.com> | 2005-01-18 22:20:38 +0000 |
commit | 2abdb13ebe737e39653b79fecd93477e156b9db1 (patch) | |
tree | 6761a54d43d7cd4f6c767e12ae84ddde5463497d /bus/rc.messagebus.in | |
parent | 8873c90f99303f9cc308f15f8d03e637911f5b9e (diff) |
2005-01-18 Havoc Pennington <hp@redhat.com>
* rename dbus-daemon-1 to dbus-daemon throughout
Diffstat (limited to 'bus/rc.messagebus.in')
-rw-r--r-- | bus/rc.messagebus.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bus/rc.messagebus.in b/bus/rc.messagebus.in index 4214a9f4..46a3076d 100644 --- a/bus/rc.messagebus.in +++ b/bus/rc.messagebus.in @@ -6,26 +6,26 @@ # description: This is a daemon which broadcasts notifications of system events \ # and other messages. See http://www.freedesktop.org/software/dbus/ # -# processname: dbus-daemon-1 +# processname: dbus-daemon # pidfile: @DBUS_SYSTEM_PID_FILE@ # # Sanity checks. -#[ -x @EXPANDED_BINDIR@/dbus-daemon-1 ] || exit 0 +#[ -x @EXPANDED_BINDIR@/dbus-daemon ] || exit 0 # Source function library. #. @EXPANDED_SYSCONFDIR@/rc.d/init.d/functions # so we can rearrange this easily -#processname=dbus-daemon-1 +#processname=dbus-daemon #servicename=messagebus #RETVAL=0 start() { echo "Starting system message bus" - if [ -x @EXPANDED_BINDIR@/dbus-daemon-1 ];then - @EXPANDED_BINDIR@/dbus-daemon-1 --system + if [ -x @EXPANDED_BINDIR@/dbus-daemon ];then + @EXPANDED_BINDIR@/dbus-daemon --system fi #daemon --check $servicename $processname --system #RETVAL=$? @@ -39,7 +39,7 @@ stop() { ## we don't want to kill all the per-user $processname, we want ## to use the pid file *only*; because we use the fake nonexistent ## program name "$servicename" that should be safe-ish - killall dbus-daemon-1 + killall dbus-daemon #RETVAL=$? #echo #if [ $RETVAL -eq 0 ]; then |