A working stopdaemons.sh, and no parameter needed for startdaemons.sh

darcs-hash:20080906202242-f6e2c-8f3d04c181ef4bffc1727f3333a3bfe5766bda6b.gz
This commit is contained in:
CiaranG
2008-09-06 16:22:42 -04:00
parent a1434ee1cf
commit e52be4183d
3 changed files with 76 additions and 2 deletions

View File

@@ -20,12 +20,12 @@
# This program tries to start the daemons for Laconica.
# Note that the 'maildaemon' needs to run as a mail filter.
export INSTALLDIR=$1
DIR=`dirname $0`
for f in xmppdaemon.php jabberqueuehandler.php publicqueuehandler.php \
xmppconfirmhandler.php smsqueuehandler.php ombqueuehandler.php; do
echo -n "Starting $f...";
php $INSTALLDIR/scripts/$f;
php $DIR/$f
echo "DONE."
done