Browse Source

EasyEngine v1.3.6

old-stable v1.3.6
Mitesh Shah 11 years ago
parent
commit
8432f2c07e
  1. 4
      CHANGELOG.txt
  2. 2
      usr/local/sbin/easyengine
  3. 6
      usr/local/sbin/eeupdate

4
CHANGELOG.txt

@ -1,3 +1,7 @@
v 1.3.6 - Apr 24, 2014
- Fixed Nginx Update Problem #201
- Automate Testing Using Travis-ci
v 1.3.5 - Apr 22, 2014 v 1.3.5 - Apr 22, 2014
- Update nginx to the latest stable version (1.4.7) - Update nginx to the latest stable version (1.4.7)

2
usr/local/sbin/easyengine

@ -1965,7 +1965,7 @@ if [ "$1" = "version" ] || [ "$1" = "--version" ] || [ "$1" = "-v" ]
then then
# Display Easy Engine Version # Display Easy Engine Version
echo "easyengine version: 1.3.5" echo "easyengine version: 1.3.6"
# Easy Engine Info # Easy Engine Info
elif [ "$1" = "info" ] elif [ "$1" = "info" ]

6
usr/local/sbin/eeupdate

@ -473,6 +473,9 @@ EE133()
EE134() EE134()
{ {
if [ "$LINUX_DISTRO" == "Ubuntu" ] if [ "$LINUX_DISTRO" == "Ubuntu" ]
then
nginx -v 2>&1 | grep 1.4.7
if [ $? -ne 0 ]
then then
# Removing Old Nginx Repository # Removing Old Nginx Repository
rm /etc/apt/sources.list.d/brianmercer-nginx* rm /etc/apt/sources.list.d/brianmercer-nginx*
@ -490,6 +493,7 @@ EE134()
apt-get -o Dpkg::Options::="--force-confold" -y install nginx-custom \ apt-get -o Dpkg::Options::="--force-confold" -y install nginx-custom \
|| OwnError "Unable To Update Nginx" || OwnError "Unable To Update Nginx"
fi fi
fi
} }
HTTPAUTH() HTTPAUTH()
@ -596,7 +600,7 @@ then
EECURRENTVERSION="1.3.4" EECURRENTVERSION="1.3.4"
fi fi
if [[ $EECURRENTVERSION = 1.3.4 ]] if [[ $EECURRENTVERSION = 1.3.4 ]] || [[ $EECURRENTVERSION = 1.3.5 ]]
then then
EE134 EE134
fi fi

Loading…
Cancel
Save