Skip to content

Commit 464ef23

Browse files
committed
EasyEngine v1.3.4
1 parent 6f9f076 commit 464ef23

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

usr/local/sbin/easyengine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1965,7 +1965,7 @@ if [ "$1" = "version" ] || [ "$1" = "--version" ] || [ "$1" = "-v" ]
19651965
then
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
19711971
elif [ "$1" = "info" ]

usr/local/sbin/eeupdate

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
459472
HTTPAUTH()
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

0 commit comments

Comments
 (0)