prepare_php.sh: add missing install_ifnot function #106

Merged
Ark74 merged 13 commits from Ark74/quick-jibri-installer:split_php_prepare into master 2024-03-21 19:07:16 +00:00
1 changed files with 9 additions and 0 deletions

View File

@ -18,6 +18,15 @@ if [ $# -ne 1 ]; then
exit 1
fi
install_ifnot() {
if [ "$(dpkg-query -W -f='${Status}' "$1" 2>/dev/null | grep -c "ok installed")" == "1" ]; then
echo " $1 is installed, skipping..."
else
printf "\n---- Installing %s ----" "$1"
apt-get -yq2 install "$1"
fi
}
install_aval_package() {
for i in $1
do