stopdaemons.sh: pass site-specifier args through to getvaliddaemons.php

This commit is contained in:
Joshua Judson Rosen 2014-12-06 18:54:15 -05:00
parent d02f3c4648
commit 20599d2964
1 changed files with 7 additions and 1 deletions

View File

@ -20,6 +20,7 @@
# This program tries to stop the daemons for GNU social that were
# previously started by startdaemons.sh
ARGSG=
SITENAME=
SITE=
ID="*"
@ -28,12 +29,17 @@ if [ $# -gt 0 ] ; then
SITENAME="$1"
SITE="-s$SITENAME"
ID=`echo $SITENAME | sed s/\\\\./_/g`
ARGSG="$ARGSG -s$1"
fi
if [ $# -gt 1 ]; then
ARGSG="$ARGSG -p$2"
fi
SDIR=`dirname $0`
DIR=`php $SDIR/getpiddir.php $SITE`
DAEMONS=`php $SDIR/getvaliddaemons.php`
DAEMONS=`php $SDIR/getvaliddaemons.php $ARGSG`
for f in $DAEMONS; do
f=$(basename $f .php)