From 84beb924f1c3d2c371cbbd220d938c82ba5d24de Mon Sep 17 00:00:00 2001 From: Andrew Van Tassel Date: Mon, 29 Jan 2018 01:02:59 -0700 Subject: [PATCH 1/3] Update install.sh Updated php5 to php7.0 --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index f80324f..c03bc72 100755 --- a/install.sh +++ b/install.sh @@ -92,7 +92,7 @@ if [ $(($nowTime - $lastUpdate)) -gt 604800 ] ; then echo "last apt-get update was over a week ago. Running apt-get update before updating dependencies" sudo apt-get update||die fi -sudo apt-get install -y apache2 libapache2-mod-php5 php5-cli php5-common php5-cgi php5 git-core build-essential python-dev python-pip pastebinit || die +sudo apt-get install -y apache2 libapache2-mod-php7.0 php7.0-cli php7.0-common php7.0-cgi php7.0 git-core build-essential python-dev python-pip pastebinit || die echo -e "\n***** Installing/updating required python packages via pip... *****\n" sudo pip install pyserial psutil simplejson configobj gitpython --upgrade echo -e "\n***** Done processing BrewPi dependencies *****\n" From 8eb9f21b4903caa8f0770f3786d2d226adaac642 Mon Sep 17 00:00:00 2001 From: Andrew Van Tassel Date: Mon, 29 Jan 2018 01:21:10 -0700 Subject: [PATCH 2/3] Update install.sh Added missing php7.0-mbstring --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index c03bc72..ef844ae 100755 --- a/install.sh +++ b/install.sh @@ -92,7 +92,7 @@ if [ $(($nowTime - $lastUpdate)) -gt 604800 ] ; then echo "last apt-get update was over a week ago. Running apt-get update before updating dependencies" sudo apt-get update||die fi -sudo apt-get install -y apache2 libapache2-mod-php7.0 php7.0-cli php7.0-common php7.0-cgi php7.0 git-core build-essential python-dev python-pip pastebinit || die +sudo apt-get install -y apache2 libapache2-mod-php7.0 php7.0-cli php7.0-common php7.0-cgi php7.0-mbstring php7.0 git-core build-essential python-dev python-pip pastebinit || die echo -e "\n***** Installing/updating required python packages via pip... *****\n" sudo pip install pyserial psutil simplejson configobj gitpython --upgrade echo -e "\n***** Done processing BrewPi dependencies *****\n" From 11e844e59d27c5f2d4404cfda8e7672a1e66f8a1 Mon Sep 17 00:00:00 2001 From: Andrew Van Tassel Date: Mon, 29 Jan 2018 01:38:10 -0700 Subject: [PATCH 3/3] Update install.sh Changed git-core to git --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index ef844ae..b2dc31f 100755 --- a/install.sh +++ b/install.sh @@ -92,7 +92,7 @@ if [ $(($nowTime - $lastUpdate)) -gt 604800 ] ; then echo "last apt-get update was over a week ago. Running apt-get update before updating dependencies" sudo apt-get update||die fi -sudo apt-get install -y apache2 libapache2-mod-php7.0 php7.0-cli php7.0-common php7.0-cgi php7.0-mbstring php7.0 git-core build-essential python-dev python-pip pastebinit || die +sudo apt-get install -y apache2 libapache2-mod-php7.0 php7.0-cli php7.0-common php7.0-cgi php7.0-mbstring php7.0 git build-essential python-dev python-pip pastebinit || die echo -e "\n***** Installing/updating required python packages via pip... *****\n" sudo pip install pyserial psutil simplejson configobj gitpython --upgrade echo -e "\n***** Done processing BrewPi dependencies *****\n"