Fixed oopsie
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
for f in /etc/nginx/sites-available/*; do
|
||||
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
|
||||
fi
|
||||
fi
|
||||
if [ $IMODE = l ] && [ $PhpPurge = 0 ]; then
|
||||
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
|
||||
[Yy]* ) sed -i "s/$phpver/$newphpver/" $f
|
||||
break;;
|
||||
|
||||
Reference in New Issue
Block a user