diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-09-04 15:28:51 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-09-04 15:28:51 -0400 |
commit | febfde227d4d8108682038aba0644a24315ffb87 (patch) | |
tree | fe11c25d74fe1ef441a47fdf9d320959fc33b22c /scripts | |
parent | c8be6fc095a398b310569ad2562b31125c6bff63 (diff) |
better feedback when starting daemons
darcs-hash:20080904192851-84dde-91b7e3bd9cadb760224fee14418fc37c44e2b7c7.gz
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 |