diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/startdaemons.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/startdaemons.sh b/scripts/startdaemons.sh index 6cb010800..4ba7e6872 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 |