Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

removed PHP 5 dependencies and added php7.0-mbstring dependancy #40

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion install.sh
Expand Up @@ -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-php php-cli php-common php-cgi php git-core build-essential python-dev python-pip pastebinit php7.0-mbstring python-configobj || 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"
Expand Down