forked from GNUsocial/gnu-social
stopdaemons.sh: dynamic daemons list
Use getvaliddaemons.php instead of the hardcoded list of daemons
This commit is contained in:
parent
ad264b70e1
commit
6d9681d398
@ -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"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user