3545df9c926e9c66703c852f2ac9f583dd5a035c
[koha.git] / misc / bin / sip_shutdown.sh
1 #!/bin/bash
2
3 #Terminates the session leader Sipserver which should terminate the children
4 # The pidfile name is specified as a server parameter in the configuration
5 # file
6
7 PID_FILE=/var/run/sipserver.pid
8
9 kill `cat $PID_FILE`
10