mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-06 05:29:42 +00:00
16 lines
411 B
Bash
16 lines
411 B
Bash
|
#!/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 | "$ESCALATION_TOOL" tar -xz -C /usr/local/bin
|
||
|
else
|
||
|
printf "%b\n" "${GREEN}Ngrok is already installed.${RC}"
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
checkEnv
|
||
|
checkEscalationTool
|
||
|
installNgrok
|