Skip to content

Instantly share code, notes, and snippets.

@dblock
Created June 20, 2018 19:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dblock/9aeedf358c3bbd1c304fdd86fedda829 to your computer and use it in GitHub Desktop.
Save dblock/9aeedf358c3bbd1c304fdd86fedda829 to your computer and use it in GitHub Desktop.
Restart all the bots.
#!/bin/bash
for D in `find . -type d -name "*bot"`
do
NAME=`basename $D`
echo Restarting $NAME ...
dokku ps:restart $NAME
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment