home *** CD-ROM | disk | FTP | other *** search
/ tusportal.tus.k12.pa.us / tusportal.tus.k12.pa.us.tar / tusportal.tus.k12.pa.us / Wyse / latest-image.raw / 0.img / etc / init.d / dbus < prev    next >
Text File  |  2010-05-05  |  3KB  |  125 lines

  1. #!/bin/sh
  2. # Author: Timo Hoenig <thoenig@suse.de>
  3. #
  4. # /etc/init.d/dbus
  5. #
  6. ### BEGIN INIT INFO
  7. # Provides:          dbus
  8. # Required-Start:    $local_fs
  9. # Should-Start:
  10. # Required-Stop:     $local_fs
  11. # Should-Stop:
  12. # Default-Start:     2 3 5
  13. # Default-Stop:      
  14. # Short-Description: D-Bus is a message bus system for applications to talk to one another.
  15. # Description:       D-Bus supplies both a system daemon and a per-user-login-session daemon.
  16. #                    Also, the message bus is built on top of a general one-to-one message
  17. #                    passing framework, which can be used by any two apps to communicate
  18. #                    directly (without going through the message bus daemon).
  19. ### END INIT INFO
  20.  
  21. DBUS_DAEMON_BIN=/bin/dbus-daemon
  22. test -x $DBUS_DAEMON_BIN || exit 5
  23.  
  24. DBUS_DAEMON_PARAMETER="--system";
  25. DBUS_DAEMON_PID_DIR="/var/run/dbus";
  26. DBUS_DAEMON_PID=$DBUS_DAEMON_PID_DIR/pid;
  27.  
  28. DBUS_MACHINE_ID_DIR="/var/lib/dbus";
  29. DBUS_MACHINE_ID=$DBUS_MACHINE_ID_DIR/machine-id;
  30.  
  31. DBUS_UUIIDGEN_BIN=/bin/dbus-uuidgen
  32.  
  33. # Source LSB init functions
  34. # providing start_daemon, killproc, pidofproc, 
  35. # log_success_msg, log_failure_msg and log_warning_msg.
  36. # This is currently not used by UnitedLinux based distributions and
  37. # not needed for init scripts for UnitedLinux only. If it is used,
  38. # the functions from rc.status should not be sourced or used.
  39. #. /lib/lsb/init-functions
  40.  
  41. . /etc/rc.status
  42.  
  43. # Reset status of this service
  44. rc_reset
  45.  
  46. case "$1" in
  47.     start)
  48.     if [ ! -d $DBUS_MACHINE_ID_DIR ]; then
  49.         mkdir -p $DBUS_MACHINE_ID_DIR;
  50.         chown messagebus:messagebus $DBUS_MACHINE_ID_DIR;
  51.     fi
  52.     if [ ! -e $DBUS_MACHINE_ID ] && [ -x $DBUS_UUIIDGEN_BIN ]; then
  53.         echo -n "Creating universally unique ID..."
  54.         /bin/dbus-uuidgen --ensure;
  55.         rc_status -v;
  56.     fi
  57.     if [ ! -d $DBUS_DAEMON_PID_DIR ]; then
  58.         mkdir -p $DBUS_DAEMON_PID_DIR;
  59.         chown messagebus:messagebus $DBUS_DAEMON_PID_DIR;
  60.     fi
  61.     if [ -e $DBUS_DAEMON_PID ]; then
  62.         if [ -d /proc/`cat $DBUS_DAEMON_PID` ]; then
  63.             echo "D-Bus already started. Not starting."
  64.             exit 0;
  65.         else
  66.             echo "Removing stale PID file $DBUS_DAEMON_PID.";
  67.             rm -f $DBUS_DAEMON_PID;
  68.         fi
  69.     fi    
  70.     # cleanup at_console at boot
  71.     if [ -n "$REDIRECT" ]; then
  72.         /bin/rm -rf /var/run/dbus/at_console
  73.         /bin/mkdir -m 755 /var/run/dbus/at_console
  74.     fi
  75.     #
  76.     echo -n "Starting D-Bus daemon";
  77.     $DBUS_DAEMON_BIN $DBUS_DAEMON_PARAMETER
  78.     rc_status -v
  79.     ;;
  80.     stop)
  81.     echo -n "Shutting down D-Bus daemon"
  82.     killproc -p $DBUS_DAEMON_PID -TERM $DBUS_DAEMON_BIN
  83.     rc_status -v
  84.     rm -f $DBUS_DAEMON_PID
  85.     ;;
  86.     try-restart)
  87.     $0 status >/dev/null &&  $0 restart
  88.     rc_status
  89.     ;;
  90.     restart)
  91.     $0 stop
  92.     $0 start
  93.     rc_status
  94.     ;;
  95.     force-reload)
  96.     echo -n "Reload service D-Bus daemon"
  97.     $0 stop  &&  $0 start
  98.     rc_status
  99.     ;;
  100.     reload)
  101.     rc_failed 3
  102.     rc_status -v
  103.     ;;
  104.     status)
  105.     echo -n "Checking for service D-Bus daemon"
  106.     checkproc -k -p $DBUS_DAEMON_PID $DBUS_DAEMON_BIN
  107.     if [ $? -eq 7 ]; then
  108.         rc_failed 3
  109.     fi;
  110.     rc_status -v
  111.     ;;
  112.     probe)
  113.     ## Optional: Probe for the necessity of a reload, print out the
  114.     ## argument to this init script which is required for a reload.
  115.     ## Note: probe is not (yet) part of LSB (as of 1.2)
  116.     # test /etc/FOO/FOO.conf -nt /var/run/FOO.pid && echo reload
  117.     ;;
  118.     *)
  119.     echo "Usage: $0 {start|stop|status|try-restart|restart|force-reload|reload|probe}"
  120.     exit 1
  121.     ;;
  122. esac
  123. rc_exit
  124.  
  125.