Browse Source

EasyEngine V1.3.5

old-stable v1.3.5
Mitesh Shah 11 years ago
parent
commit
d900ecf945
  1. 3
      CHANGELOG.txt
  2. 2
      usr/local/sbin/easyengine
  3. 29
      usr/local/sbin/eeupdate

3
CHANGELOG.txt

@ -1,3 +1,6 @@
v 1.3.5 - Apr 22, 2014
- Update nginx to the latest stable version (1.4.7)
v 1.3.4 - Apr 22, 2014
- Supports Ubuntu 12.04, 12.10, 13.10 & 14.04 ( Fixed Issue #94 #195 )
- Change FPM process management from dynamic to ondemand #184

2
usr/local/sbin/easyengine

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

29
usr/local/sbin/eeupdate

@ -3,6 +3,7 @@
# Make Variables Available For Later Use
INSTALLLOG=/var/log/easyengine/install.log
LINUX_DISTRO=$(lsb_release -i | cut -d':' -f2 | awk '{print $1}')
# Capture Errors
OwnError()
@ -469,6 +470,28 @@ EE133()
fi
}
EE134()
{
if [ "$LINUX_DISTRO" == "Ubuntu" ]
then
# Removing Old Nginx Repository
rm /etc/apt/sources.list.d/brianmercer-nginx*
# Add Nginx Launchpad Repository
echo -e "\033[34mAdding rtCamp Nginx Launchpad Repository, Please Wait...\e[0m"
add-apt-repository -y ppa:rtcamp/nginx &>> $INSTALLLOG \
|| OwnError "Unable To Add Nginx Launchpad Repository"
# Update The APT Cache
echo -e "\033[34mUpdating APT Cache, Please Wait...\e[0m"
apt-get update &>> $INSTALLLOG || OwnError "Unable To Update APT Cache"
# Update Nginx
apt-get -o Dpkg::Options::="--force-confold" install nginx-custom \
|| OwnError "Unable To Update Nginx"
fi
}
HTTPAUTH()
{
# Get The htpasswd Details
@ -570,6 +593,12 @@ then
if [[ $EECURRENTVERSION = 1.3.3 ]]
then
EE133
EECURRENTVERSION="1.3.4"
fi
if [[ $EECURRENTVERSION = 1.3.4 ]]
then
EE134
fi
fi

Loading…
Cancel
Save