Hi Humberto,
Here is what you have requested for.
#!/bin/bash # # Startup script for SER # # chkconfig: 345 85 15 # description: Ser is a fast SIP Proxy. # # processname: ser # pidfile: /var/run/ser.pid # config: /etc/ser/ser.cfg
# Source function library. . /etc/rc.d/init.d/functions
ser=/usr/local/sbin/ser prog=ser RETVAL=0
start() { echo -n $"Starting $prog: " daemon $ser start $OPTIONS RETVAL=$? echo [ $RETVAL = 0 ] && touch /var/lock/subsys/ser return $RETVAL }
stop() { echo -n $"Stopping $prog: " killproc $ser RETVAL=$? echo [ $RETVAL = 0 ] && rm -f /var/lock/subsys/ser /var/run/ser.pid }
reload() { echo -n $"Reloading $prog: " killproc $ser restart -HUP RETVAL=$? echo }
# See how we were called. case "$1" in start) start ;; stop) stop ;; status) status $ser RETVAL=$? ;; restart) stop start ;; condrestart) if [ -f /var/run/ser.pid ] ; then stop start fi ;; *) echo $"Usage: $prog {start|stop|restart|condrestart|status|help}" exit 1 esac
exit $RETVAL
Kannaiyan
http://www.speak2world.com http://www.goods2world.com
----- Original Message ----- From: Humberto Atristain To: serusers@lists.iptel.org Sent: Friday, May 07, 2004 6:12 AM Subject: [Serusers] CREATE init.d script
Pals
Please help me create a init.d script I installed SER from sources
Or please say me how to restart SER without init.d script
Regards
HA
------------------------------------------------------------------------------
_______________________________________________ Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers