stopdaemons.sh: dynamic daemons list

Use getvaliddaemons.php instead of the hardcoded list of daemons
This commit is contained in:
chimo 2014-06-07 10:34:51 -04:00
parent ad264b70e1
commit 6d9681d398
1 changed files with 4 additions and 3 deletions

View File

@ -33,9 +33,10 @@ fi
SDIR=`dirname $0`
DIR=`php $SDIR/getpiddir.php $SITE`
for f in ombhandler smshandler pinghandler queuedaemon \
twitterhandler facebookhandler imdaemon \
twitterstatusfetcher synctwitterfriends pluginhandler rsscloudhandler; do
DAEMONS=`php $SDIR/getvaliddaemons.php`
for f in $DAEMONS; do
f=$(basename $f .php)
FILES="$DIR/$f.$ID.pid"