ipfs-cluster/docker/random-stopper.sh

20 lines
434 B
Bash
Raw Normal View History

#! /bin/bash
# $1=sleep time, $2=first command, $3=second command
# Loop forever
STOPPED=1
sleep 2
while true; do
if [ "$(($RANDOM % 10))" -gt "4" ]; then
# Take down cluster
if [ "$STOPPED" -eq "1" ]; then
STOPPED=0
killall -STOP ipfs-cluster-service
else # Take down cluster
STOPPED=1
killall -CONT ipfs-cluster-service
fi
fi
sleep 1
done