3 # StatusNet - a distributed open-source microblogging tool
5 # Copyright (C) 2008, 2009, StatusNet, Inc.
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU Affero General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU Affero General Public License for more details.
17 # You should have received a copy of the GNU Affero General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
20 # This program tries to stop the daemons for StatusNet that were
21 # previously started by startdaemons.sh
24 DIR=`php $SDIR/getpiddir.php`
26 for f in ombhandler smshandler pinghandler \
27 twitterhandler facebookhandler \
28 twitterstatusfetcher synctwitterfriends pluginhandler rsscloudhandler; do
31 for ff in "$FILES" ; do
33 PID=`cat $ff 2>/dev/null`
34 if [ -n "$PID" ] ; then
35 echo -n "Stopping $f ($PID)..."
36 if kill -3 $PID 2>/dev/null ; then
38 while kill -0 $PID 2>/dev/null ; do
41 if [ $count -gt 5 ]; then break; fi
43 if kill -9 $PID 2>/dev/null ; then
44 echo "FORCIBLY TERMINATED"
46 echo "STOPPED CLEANLY"