Bug 30477: Add new UNIMARC installer translation files
[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