From 9f84dbf1bd8823806a17587b950e878c75967a87 Mon Sep 17 00:00:00 2001 From: tteckster Date: Fri, 9 Feb 2024 17:34:32 -0500 Subject: [PATCH] Update grocy-install.sh fixes https://github.com/tteck/Proxmox/issues/2463 --- install/grocy-install.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/install/grocy-install.sh b/install/grocy-install.sh index 526eeaff..091fa8d8 100644 --- a/install/grocy-install.sh +++ b/install/grocy-install.sh @@ -20,18 +20,18 @@ $STD apt-get install -y mc $STD apt-get install -y apt-transport-https msg_ok "Installed Dependencies" -msg_info "Installing PHP 8.1" +msg_info "Installing PHP 8.2" VERSION="$(awk -F'=' '/^VERSION_CODENAME=/{ print $NF }' /etc/os-release)" curl -sSLo /usr/share/keyrings/deb.sury.org-php.gpg https://packages.sury.org/php/apt.gpg echo -e "deb [signed-by=/usr/share/keyrings/deb.sury.org-php.gpg] https://packages.sury.org/php/ $VERSION main" >/etc/apt/sources.list.d/php.list $STD apt-get update -$STD apt-get install -y php8.1 -$STD apt-get install -y libapache2-mod-php8.1 -$STD apt-get install -y php8.1-sqlite3 -$STD apt-get install -y php8.1-gd -$STD apt-get install -y php8.1-intl -$STD apt-get install -y php8.1-mbstring -msg_ok "Installed PHP 8.1" +$STD apt-get install -y php8.2 +$STD apt-get install -y libapache2-mod-php8.2 +$STD apt-get install -y php8.2-sqlite3 +$STD apt-get install -y php8.2-gd +$STD apt-get install -y php8.2-intl +$STD apt-get install -y php8.2-mbstring +msg_ok "Installed PHP 8.2" msg_info "Installing grocy" latest=$(curl -s https://api.github.com/repos/grocy/grocy/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }')