From 89f7cb1762a865d72827a024559018efc247e185 Mon Sep 17 00:00:00 2001 From: Patrick J Cherry Date: Tue, 1 Aug 2017 11:13:37 +0100 Subject: Removed more cruft. Updated debian/rules to use the Makefile. Updated bundle --- heartbeat_hammer.sh | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 heartbeat_hammer.sh (limited to 'heartbeat_hammer.sh') diff --git a/heartbeat_hammer.sh b/heartbeat_hammer.sh deleted file mode 100644 index 12b74bc..0000000 --- a/heartbeat_hammer.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/bash - -PRE="ruby -I lib bin/mauvesend [::1]" -F=60 -S=10 -n=$* - -_host () { - hostname="imaginary-$i.example.com" - down="n" - - while( true ) ; do - - if [ "$down" == "n" ] ; then - $PRE -o $hostname -i heartbeat -r +$F -c now -s "heartbeat failed" --detail="

The heartbeat wasn't sent for this host

This indicates that the host might be down

" - sleep $((F - $RANDOM*$S/32768 - $S)) - else - sleep $((RANDOM*$S/32768 + $F + $S)) - fi - - if [ $RANDOM -gt 30000 ] ; then - [ "$down" == "n" ] && echo "Host $hostname down" - down="y" - else - [ "$down" == "y" ] && echo "Host $hostname up" - down="n" - fi - 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 -done - -- cgit v1.2.1