diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-07-22 16:55:01 +0100 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-07-22 16:55:01 +0100 |
commit | fd23821950f0562a8995735105cd31fdc6d55933 (patch) | |
tree | 967df2f5647803a6c46f4d52003b2231c1de72cb /heartbeat_hammer.sh | |
parent | d3a3cfef9650b08f62db62bd7e86b673f9d77d0b (diff) |
* Rejigged configuration
* Added --test and --verbose flags for the server config
* Started proper test suite
* Config parsing now gives more sensible errors + backtrace
* Rejigged people and source lists
Diffstat (limited to 'heartbeat_hammer.sh')
-rw-r--r-- | heartbeat_hammer.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/heartbeat_hammer.sh b/heartbeat_hammer.sh index f2d4671..33cbc29 100644 --- a/heartbeat_hammer.sh +++ b/heartbeat_hammer.sh @@ -1,6 +1,6 @@ #!/bin/bash -PRE="ruby -I lib bin/mauveclient localhost" +PRE="ruby -I lib bin/mauvesend localhost" F=60 S=10 n=$* @@ -28,6 +28,10 @@ _host () { done } +echo -e "This command will go beserk. To kill run\n pkill -t `tty`\n\nGiving you 5 seconds to quit!" + +sleep 5 + for i in `seq 1 100` ; do _host $i & sleep 0.2 |