Browse Source

fix path to dbus-daemon

Waldemar Brodkorb 13 years ago
parent
commit
e6450e9b2a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      package/dbus/files/dbus.init

+ 2 - 2
package/dbus/files/dbus.init

@@ -11,10 +11,10 @@ autostart)
 	;;
 start)
 	mkdir -p /var/run/dbus
-	/usr/sbin/dbus-daemon --config-file=/etc/dbus-1/system.conf
+	/usr/bin/dbus-daemon --config-file=/etc/dbus-1/system.conf
 	;;
 stop)
-	kill $(pgrep -f /usr/sbin/dbus-daemon)
+	kill $(pgrep -f /usr/bin/dbus-daemon)
 	;;
 restart)
 	sh $0 stop