Merge branch 'release' into beta-v3

This commit is contained in:
chalith
2023-12-21 13:13:44 +05:30
2 changed files with 7 additions and 1 deletions

View File

@@ -27,7 +27,7 @@ stage "Installing dependencies"
# Added --allow-releaseinfo-change
# To fix - Repository 'https://apprepo.vultr.com/ubuntu universal InRelease' changed its 'Codename' value from 'buster' to 'universal'
apt-get update --allow-releaseinfo-change
apt-get install -y uidmap fuse3 cgroup-tools quota curl openssl jq
apt-get install -y uidmap fuse3 cgroup-tools quota curl openssl
# uidmap # Required for rootless docker.
# slirp4netns # Required for high performance rootless networking.

View File

@@ -258,6 +258,12 @@ function check_prereq() {
echo "qrencode command not found. Installing.."
apt-get install -y qrencode >/dev/null
fi
# Check jq command is installed.
if ! command -v jq &>/dev/null; then
echo "jq command not found. Installing.."
apt-get install -y jq >/dev/null
fi
}
function check_sys_req() {