linutil/core/tabs/applications-setup/Developer-tools/ngrok-setup.sh

23 lines
630 B
Bash
Raw Normal View History

2024-09-21 15:26:32 +01:00
#!/bin/sh -e
. ../../common-script.sh
installNgrok() {
if ! command_exists ngrok; then
printf "%b\n" "${YELLOW}Installing Ngrok...${RC}"
curl -sSLO https://bin.equinox.io/c/bNyj1mQVY4c/ngrok-v3-stable-linux-amd64.tgz
if [ -f "ngrok-v3-stable-linux-amd64.tgz" ]; then
elevated_execution tar -xz -f ngrok-v3-stable-linux-amd64.tgz -C /usr/local/bin
else
printf "%b\n" "${RED}Error occurred when downloading.${RC}"
exit 1
fi
2024-09-21 15:26:32 +01:00
else
printf "%b\n" "${GREEN}Ngrok is already installed.${RC}"
fi
}
checkEnv
checkEscalationTool
installNgrok