From: Evan Prodromou Date: Thu, 4 Sep 2008 19:28:51 +0000 (-0400) Subject: better feedback when starting daemons X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=febfde227d4d8108682038aba0644a24315ffb87;p=quix0rs-gnu-social.git better feedback when starting daemons darcs-hash:20080904192851-84dde-91b7e3bd9cadb760224fee14418fc37c44e2b7c7.gz --- diff --git a/scripts/startdaemons.sh b/scripts/startdaemons.sh index 6cb0108000..4ba7e68722 100755 --- a/scripts/startdaemons.sh +++ b/scripts/startdaemons.sh @@ -24,7 +24,8 @@ export INSTALLDIR=$1 for f in xmppdaemon.php xmppqueuehandler.php publicqueuehandler.php \ xmppconfirmhandler.php smsqueuehandler.php ombqueuehandler.php; do - - php $INSTALLDIR/scripts/$f; + echo -n "Starting $f..."; + php $INSTALLDIR/scripts/$f; + echo "DONE." done