Skip to content

Instantly share code, notes, and snippets.

@3ace
Last active August 28, 2021 17:49
Show Gist options
  • Save 3ace/5561f9983cec352a7a175060382c85fd to your computer and use it in GitHub Desktop.
Save 3ace/5561f9983cec352a7a175060382c85fd to your computer and use it in GitHub Desktop.
Removes all registered BigBlueButton from Scalelite (Tested using blindsidenetwks/scalelite:v1.1-bionic230-amazonlinux)
#!/bin/bash
./bin/rake servers | sed -rn "s/^id:\s{1}(.*$)/\1/p" | while read -r line; do ./bin/rake servers:remove[$line]; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment