Install jq if it's not installed

This commit is contained in:
Robbie Blaine 2022-09-09 19:24:15 +02:00
parent 83077d3de0
commit 4d294c09f0
No known key found for this signature in database
GPG key ID: 76F051A5FC7983E9
2 changed files with 44 additions and 6 deletions

View file

@ -66,6 +66,28 @@ function install_docker() {
fi
}
function install_jq() {
local os="${1}"
echo "Installing jq for os ${os}" >/dev/tty
if [[ "${OS}" == "debian" || "${OS}" == "ubuntu" ]]; then
sudo apt-get update
sudo apt-get install -y jq
return 0
elif [[ "${OS}" == "centos" ]]; then
sudo yum install -y jq
return 0
elif [[ "${OS}" == "fedora" ]]; then
sudo dnf -y install jq
return 0
elif [[ "${OS}" == "arch" ]]; then
sudo pacman -Sy --noconfirm jq
return 0
else
return 1
fi
}
OS="$(cat /etc/[A-Za-z]*[_-][rv]e[lr]* | grep "^ID=" | cut -d= -f2 | uniq | tr '[:upper:]' '[:lower:]' | tr -d '"')"
SUB_OS="$(cat /etc/[A-Za-z]*[_-][rv]e[lr]* | grep "^ID_LIKE=" | cut -d= -f2 | uniq | tr '[:upper:]' '[:lower:]' | tr -d '"')"
@ -95,3 +117,25 @@ if ! command -v docker-compose >/dev/null; then
sudo curl -L "https://github.com/docker/compose/releases/download/v2.3.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
fi
if command -v jq >/dev/null 2>&1; then
echo "jq is already installed"
else
install_jq "${OS}"
jq_result=$?
if [[ jq_result -eq 0 ]]; then
echo "jq installed"
else
echo "Your system ${OS} is not supported trying with sub_os ${SUB_OS}"
install_jq "${SUB_OS}"
jq_sub_result=$?
if [[ jq_sub_result -eq 0 ]]; then
echo "jq installed"
else
echo "Your system ${SUB_OS} is not supported please install jq manually"
exit 1
fi
fi
fi

View file

@ -88,12 +88,6 @@ if [[ "${NGINX_PORT}" != "80" ]] && [[ "${DOMAIN}" != "tipi.localhost" ]]; then
exit 1
fi
# Check if JQ is installed
if ! command -v jq >/dev/null 2>&1; then
echo "Tipi requires JQ to be installed (https://stedolan.github.io/jq/)"
exit 1
fi
ROOT_FOLDER="$($readlink -f $(dirname "${BASH_SOURCE[0]}")/..)"
STATE_FOLDER="${ROOT_FOLDER}/state"
SED_ROOT_FOLDER="$(echo $ROOT_FOLDER | sed 's/\//\\\//g')"