Fixed oopsie

This commit is contained in:
Bram Prieshof
2020-08-14 14:52:18 +02:00
parent 59e5354179
commit 652b69ec37

View File

@@ -1,12 +1,12 @@
for f in /etc/nginx/sites-available/*; do for f in /etc/nginx/sites-available/*; do
if [ $IMODE = n ] && [ $PhpPurge = 0 ]; then if [ $IMODE = n ] && [ $PhpPurge = 0 ]; then
if (whiptail --title "Update Nginx config ?" --yesno "Update php version in : ${f##*/} ?" 8 78); then if (whiptail --title "Update Nginx config ?" --yesno "Update php version in nginx site: ${f##*/} ?" 8 78); then
sed -i "s/$phpver/$newphpver/" $f sed -i "s/$phpver/$newphpver/" $f
fi fi
fi fi
if [ $IMODE = l ] && [ $PhpPurge = 0 ]; then if [ $IMODE = l ] && [ $PhpPurge = 0 ]; then
while true; do while true; do
read -p "Remove php $phpver ? -> yes/no?" yn read -p "Update php version in nginx site: ${f##*/} ? -> yes/no?" yn
case $yn in case $yn in
[Yy]* ) sed -i "s/$phpver/$newphpver/" $f [Yy]* ) sed -i "s/$phpver/$newphpver/" $f
break;; break;;