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