Update grocy.sh

fixes https://github.com/tteck/Proxmox/issues/2496
This commit is contained in:
tteckster 2024-02-14 13:27:19 -05:00 committed by GitHub
parent 5d64448ac2
commit 12454bdba7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 0 deletions

View File

@ -56,6 +56,11 @@ function update_script() {
header_info
if [[ ! -f /etc/apache2/sites-available/grocy.conf ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
msg_info "Updating ${APP}"
php_version=$(php -v | head -n 1 | awk '{print $2}')
if [[ ! $php_version == "8.3"* ]]; then
apt-get install -y php8.3
update-alternatives --set php /usr/bin/php8.3
fi
bash /var/www/html/update.sh
msg_ok "Updated Successfully"
exit