home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1999 March B
/
SCO_CASTOR4RRT.iso
/
UAGENT
/
root
/
usr
/
lib
/
uagent
/
S69uagent
< prev
next >
Wrap
Text File
|
1998-08-19
|
355b
|
20 lines
# This script file automates the start up of Uagent
# daemons. If for some reason the system hangs during this startup
# get into single user mode and delete this file.
case "$1" in
'start')
su root -c "/usr/bin/uagent start"
;;
'stop')
su root -c "/usr/bin/uagent stop"
;;
*)
echo "Usage: /etc/rc2.d/S69uagent { start | stop }"
;;
esac
exit 0