File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -1965,7 +1965,7 @@ if [ "$1" = "version" ] || [ "$1" = "--version" ] || [ "$1" = "-v" ]
19651965then
19661966
19671967 # Display Easy Engine Version
1968- echo " easyengine version: 1.3.3 "
1968+ echo " easyengine version: 1.3.4 "
19691969
19701970# Easy Engine Info
19711971elif [ " $1 " = " info" ]
Original file line number Diff line number Diff line change @@ -456,6 +456,19 @@ EE122()
456456 INSTALLPMA
457457}
458458
459+ EE133 ()
460+ {
461+ # Change PHP5-FPM Process Manager
462+ grep " ^pm = ondemand" /etc/php5/fpm/pool.d/www.conf & >> $INSTALLLOG
463+ if [ $? -ne 0 ]
464+ then
465+ sed -i " s/pm = dynamic/pm = ondemand/" /etc/php5/fpm/pool.d/www.conf \
466+ || OwnError " Unable To Chnage Process Manager From Dynamic To Ondemand"
467+ else
468+ echo -e " \033[34mPHP5-FPM Process Manager Set To Ondemand\e[0m"
469+ fi
470+ }
471+
459472HTTPAUTH ()
460473{
461474 # Get The htpasswd Details
@@ -551,6 +564,12 @@ then
551564 if [[ $EECURRENTVERSION = 1.2.2 ]]
552565 then
553566 EE122
567+ EECURRENTVERSION=" 1.3.3"
568+ fi
569+
570+ if [[ $EECURRENTVERSION = 1.3.3 ]]
571+ then
572+ EE133
554573 fi
555574 fi
556575
You can’t perform that action at this time.
0 commit comments