Skip to content

Instantly share code, notes, and snippets.

@GiorgioRegni
Last active January 10, 2017 23:40
Show Gist options
  • Save GiorgioRegni/96ce4813d52889c60904ecbd6154963b to your computer and use it in GitHub Desktop.
Save GiorgioRegni/96ce4813d52889c60904ecbd6154963b to your computer and use it in GitHub Desktop.
#!/bin/bash
while true; do
WAIT="$(( $RANDOM % 10 + 1 ))"
echo "Waiting $WAIT seconds"
sleep $WAIT
echo "Killing metadata nodes"
docker exec -it scality-metadata bash -c "pkill node"
docker exec -it scality-metadata bash -c "pkill RepdServerMap"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment