2008-08-28 09:48:56 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
2009-08-25 18:43:48 -04:00
|
|
|
# StatusNet - a distributed open-source microblogging tool
|
2008-09-04 15:22:20 -04:00
|
|
|
|
2009-08-25 18:43:48 -04:00
|
|
|
# Copyright (C) 2008, 2009, StatusNet, Inc.
|
2008-08-28 09:48:56 -04:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2009-08-25 18:43:48 -04:00
|
|
|
# This program tries to start the daemons for StatusNet.
|
2008-09-04 15:22:20 -04:00
|
|
|
# Note that the 'maildaemon' needs to run as a mail filter.
|
2008-08-28 09:48:56 -04:00
|
|
|
|
2009-06-24 19:50:45 -07:00
|
|
|
ARGSG=
|
|
|
|
ARGSD=
|
2009-06-23 15:00:10 -07:00
|
|
|
|
|
|
|
if [ $# -gt 0 ]; then
|
2009-06-24 19:50:45 -07:00
|
|
|
ARGSG="$ARGSG -s$1"
|
2009-06-24 19:35:19 -07:00
|
|
|
ID=`echo $1 | sed s/\\\\./_/g`
|
2009-06-24 19:50:45 -07:00
|
|
|
ARGSD="$ARGSD -s$1 -i$ID"
|
2009-06-23 15:00:10 -07:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $# -gt 1 ]; then
|
2009-06-24 19:50:45 -07:00
|
|
|
ARGSD="$ARGSD -p$2"
|
|
|
|
ARGSG="$ARGSG -p$2"
|
2009-06-23 15:00:10 -07:00
|
|
|
fi
|
|
|
|
|
2009-06-23 16:44:00 -07:00
|
|
|
DIR=`dirname $0`
|
2009-06-24 19:50:45 -07:00
|
|
|
DAEMONS=`php $DIR/getvaliddaemons.php $ARGSG`
|
2009-06-23 16:44:00 -07:00
|
|
|
|
2009-04-28 13:30:54 +01:00
|
|
|
for f in $DAEMONS; do
|
2008-09-04 15:22:20 -04:00
|
|
|
|
2013-09-18 00:25:11 +02:00
|
|
|
echo "Starting $f..."
|
|
|
|
php $f $ARGSD
|
|
|
|
echo "DONE."
|
2009-06-23 17:08:33 -07:00
|
|
|
|
2008-09-04 15:22:20 -04:00
|
|
|
done
|