home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 March B / SCO_CASTOR4RRT.iso / UAGENT / root / usr / lib / uagent / S69uagent < prev    next >
Text File  |  1998-08-19  |  355b  |  20 lines

  1. # This script file automates the start up of Uagent
  2. # daemons. If for some reason the system hangs during this startup 
  3. # get into single user mode and delete this file.
  4.  
  5.  
  6. case "$1" in
  7. 'start')
  8.  
  9.     su root -c "/usr/bin/uagent start"
  10.     ;;
  11. 'stop')
  12.  
  13.     su root -c "/usr/bin/uagent stop"
  14.     ;;
  15. *)
  16.     echo "Usage: /etc/rc2.d/S69uagent { start | stop }"
  17.     ;;
  18. esac
  19. exit 0
  20.