diff --git a/CT-Files/freshrss/Configs/php.pkglist b/CT-Files/freshrss/Configs/php.pkglist index 5c438c4..71c82da 100644 --- a/CT-Files/freshrss/Configs/php.pkglist +++ b/CT-Files/freshrss/Configs/php.pkglist @@ -1 +1 @@ -php84 php84-fpm php84-curl php84-gmp php84-intl php84-mbstring php84-xml php84-zip php84-ctype php84-dom php84-fileinfo php84-iconv php84-json php84-opcache php84-openssl php84-phar php84-session php84-simplexml php84-xmlreader php84-xmlwriter php84-xml php84-tokenizer php84-zlib php84-pdo_mysql \ No newline at end of file +phpPHPver phpPHPver-fpm phpPHPver-curl phpPHPver-gmp phpPHPver-intl phpPHPver-mbstring phpPHPver-xml phpPHPver-zip phpPHPver-ctype phpPHPver-dom phpPHPver-fileinfo phpPHPver-iconv phpPHPver-json phpPHPver-opcache phpPHPver-openssl phpPHPver-phar phpPHPver-session phpPHPver-simplexml phpPHPver-xmlreader phpPHPver-xmlwriter phpPHPver-xml phpPHPver-tokenizer phpPHPver-zlib phpPHPver-pdo_mysql \ No newline at end of file diff --git a/CT-Files/heimdall/Configs/php.pkglist b/CT-Files/heimdall/Configs/php.pkglist index 8f135e6..13e656d 100644 --- a/CT-Files/heimdall/Configs/php.pkglist +++ b/CT-Files/heimdall/Configs/php.pkglist @@ -1 +1 @@ -php84 php84-ctype php84-curl php84-pdo_sqlite php84-mbstring php84-json php84-zip php84-xml php84-fpm php84-session php84-openssl php84-tokenizer php84-fileinfo php84-dom \ No newline at end of file +phpPHPver phpPHPver-ctype phpPHPver-curl phpPHPver-pdo_sqlite phpPHPver-mbstring phpPHPver-json phpPHPver-zip phpPHPver-xml phpPHPver-fpm phpPHPver-session phpPHPver-openssl phpPHPver-tokenizer phpPHPver-fileinfo phpPHPver-dom \ No newline at end of file diff --git a/CT-Files/nextcloud/Configs/php.pkglist b/CT-Files/nextcloud/Configs/php.pkglist index 185f088..bdc493c 100644 --- a/CT-Files/nextcloud/Configs/php.pkglist +++ b/CT-Files/nextcloud/Configs/php.pkglist @@ -1 +1 @@ -php84-pdo_mysql php84-pecl-imagick php84-cli php84-pecl-apcu php84-pecl-redis php84-fpm php84-cgi php84-common php84-mbstring php84-curl php84-gd php84-intl php84-soap php84-xml php84-zip php84-pear php84-session php84-posix php84-pdo php84-dom php84-simplexml php84-xmlreader php84-xmlwriter php84-opcache php84-pcntl php84-fileinfo php84-bcmath php84-gmp php84-sysvsem php84-exif php84-bz2 php84-sodium php84-ctype \ No newline at end of file +phpPHPver-pdo_mysql phpPHPver-pecl-imagick phpPHPver-cli phpPHPver-pecl-apcu phpPHPver-pecl-redis phpPHPver-fpm phpPHPver-cgi phpPHPver-common phpPHPver-mbstring phpPHPver-curl phpPHPver-gd phpPHPver-intl phpPHPver-soap phpPHPver-xml phpPHPver-zip phpPHPver-pear phpPHPver-session phpPHPver-posix phpPHPver-pdo phpPHPver-dom phpPHPver-simplexml phpPHPver-xmlreader phpPHPver-xmlwriter phpPHPver-opcache phpPHPver-pcntl phpPHPver-fileinfo phpPHPver-bcmath phpPHPver-gmp phpPHPver-sysvsem phpPHPver-exif phpPHPver-bz2 phpPHPver-sodium phpPHPver-ctype \ No newline at end of file diff --git a/Scripts/AlpinePHPTool.sh b/Scripts/AlpinePHPTool.sh index fd9afa8..dd0fa3f 100644 --- a/Scripts/AlpinePHPTool.sh +++ b/Scripts/AlpinePHPTool.sh @@ -110,6 +110,7 @@ run_Purge() { #(re)install PHP packages run_Install() { + sed -i -e "s/phpPHPver/php$NewPHPVer/g" $configStore/php.pkglist cat $configStore/php.pkglist | xargs apk add #Configure Php-Fpm echo ";Placeholder" > /etc/php$NewPHPVer/php-fpm.d/www.conf diff --git a/Scripts/AlpineUpdatePHPVer.sh b/Scripts/AlpineUpdatePHPVer.sh deleted file mode 100644 index 17223e4..0000000 --- a/Scripts/AlpineUpdatePHPVer.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash -#Vars - -#Goto ProjectRoot -cd "$( cd "$( dirname "$0" )" &> /dev/null && pwd )/.." - -read -p "Old PHP version (example 82 for 8.2): " OldPHPVer -read -p "New PHP version (example 83 for 8.3): " NewPHPVer - -sed -i -e "s/NewPHPVer=$OldPHPVer/NewPHPVer=$NewPHPVer/g" ./Scripts/AlpinePHPTool.sh -find ./CT-Files -name "php.pkglist" | xargs sed -i -e "s/php-fpm$OldPHPVer/php-fpm$NewPHPVer/g" -e "s/php$OldPHPVer/php$NewPHPVer/g"