]> git.evergreen-ils.org Git - working/SIPServer.git/blob - sip_shutdown.sh
LP1579144: Give Sip/MsgType.pm a copy of to_bool() from ILS.pm
[working/SIPServer.git] / sip_shutdown.sh
1 #!/bin/bash
2
3 # Copyright (C) 2010 Equinox Software, Inc.
4 # Author: Joe Atzberger
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19 [ -r $HOME/.bash_profile ] && $HOME/.bash_profile
20
21 # this is brittle: the primary server must have the lowest PPID
22 # this is brittle: ps behavior is very platform-specific, only tested on Debian Etch
23
24 target="SIPServer";
25 PROCPID=$(ps x -o pid,ppid,args --sort ppid | grep "$target" | grep -v grep | head -1 | awk '{print $1}');
26
27 if [ ! $PROCPID ] ; then
28     echo "No processes found for $target";
29     exit;
30 fi
31
32 echo "SIP Processes for this user ($USER):";
33 ps x -o pid,ppid,args --sort ppid | grep "$target" | grep -v grep ;
34 echo "Killing process #$PROCPID";
35 kill $PROCPID;