diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-08-29 14:17:02 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-08-29 14:17:02 -0400 |
commit | c4d67892751b17856b235182874c3304890dc2c3 (patch) | |
tree | b31fa8766cfaa2e906cf19862af5bfa50390e6cd /scripts/startdaemons.sh | |
parent | f652418863182182bb17e0f378194a8648392410 (diff) |
split public stream to its own queue handler
Add another queue handler for the public stream. Should further
parallelize the work of sending out messages.
darcs-hash:20080829181702-84dde-594505aa73d2380b13bd98917b70b02bac597d12.gz
Diffstat (limited to 'scripts/startdaemons.sh')
-rwxr-xr-x | scripts/startdaemons.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/startdaemons.sh b/scripts/startdaemons.sh index 37d30cdb4..8c054417d 100755 --- a/scripts/startdaemons.sh +++ b/scripts/startdaemons.sh @@ -22,6 +22,7 @@ export INSTALLDIR=$1 /sbin/start-stop-daemon -S --exec $INSTALLDIR/scripts/xmppdaemon.php -b -m --pidfile=/var/run/xmppdaemon.pid /sbin/start-stop-daemon -S --exec $INSTALLDIR/scripts/xmppqueuehandler.php -b -m --pidfile=/var/run/xmppqueuehandler.pid +/sbin/start-stop-daemon -S --exec $INSTALLDIR/scripts/publicqueuehandler.php -b -m --pidfile=/var/run/publicqueuehandler.pid /sbin/start-stop-daemon -S --exec $INSTALLDIR/scripts/xmppconfirmhandler.php -b -m --pidfile=/var/run/xmppconfirmhandler.pid /sbin/start-stop-daemon -S --exec $INSTALLDIR/scripts/smsqueuehandler.php -b -m --pidfile=/var/run/smsqueuehandler.pid /sbin/start-stop-daemon -S --exec $INSTALLDIR/scripts/ombqueuehandler.php -b -m --pidfile=/var/run/ombqueuehandler.pid |