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

View File

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