2024-09-21 15:26:32 +01:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
|
|
|
. ../../common-script.sh
|
|
|
|
|
|
|
|
installNgrok() {
|
|
|
|
if ! command_exists ngrok; then
|
2024-11-11 16:13:56 +00:00
|
|
|
printf "%b\n" "${YELLOW}Installing Ngrok.${RC}"
|
|
|
|
case "$ARCH" in
|
|
|
|
x86_64)
|
|
|
|
url="https://bin.equinox.io/c/bNyj1mQVY4c/ngrok-v3-stable-linux-amd64.tgz"
|
|
|
|
;;
|
|
|
|
aarch64)
|
|
|
|
url="https://bin.equinox.io/c/bNyj1mQVY4c/ngrok-v3-stable-linux-arm64.tgz"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
curl -sSL "$url" -o ngrok.tgz
|
|
|
|
"$ESCALATION_TOOL" tar -xzf ngrok.tgz -C /usr/local/bin
|
2024-09-21 15:26:32 +01:00
|
|
|
else
|
|
|
|
printf "%b\n" "${GREEN}Ngrok is already installed.${RC}"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
checkEnv
|
|
|
|
checkEscalationTool
|
2024-11-11 16:13:56 +00:00
|
|
|
installNgrok
|