Skip to content

Commit

Permalink
Merge pull request #1683 from obino/php-dep-fix
Browse files Browse the repository at this point in the history
Make sure we don't pull in apache.
  • Loading branch information
menivaitsi committed Feb 12, 2015
2 parents 6a99207 + 723a6e0 commit bf51564
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion debian/appscale_install_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,9 @@ installphp54()
if [ "$DIST" = "precise" ]; then
add-apt-repository -y ppa:ondrej/php5-oldstable
apt-get update
apt-get install -y php5
# We need to pull also php5-cgi to ensure apache2 won't be pulled
# in.
apt-get install -y php5-cgi php5
fi
}

Expand Down

0 comments on commit bf51564

Please sign in to comment.