summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid-Norris <Dave@Rachels-MacBook-Pro.local>2015-05-06 00:19:25 -0400
committerDavid-Norris <Dave@Rachels-MacBook-Pro.local>2015-05-06 00:19:25 -0400
commitec24efa2d9599eaf6cbc39da25cffeaff555ba3c (patch)
treeb4e1557edb69dcb8e7388cc8256ca9c9ff9e5539
parent58a0db28cccd6096a129620ddd0e631c1732fc9e (diff)
Vagrantfile gd & curl
Add php5-gd and php4-curl to Vagrantfile
-rw-r--r--Vagrantfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 89d950ee..924d4147 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -1,7 +1,7 @@
$script_sqlite = <<SCRIPT
apt-get update
-apt-get install -y apache2 php5 php5-sqlite php5-xdebug
+apt-get install -y apache2 php5 php5-gd php5-curl php5-sqlite php5-xdebug
apt-get clean -y
echo "ServerName localhost" >> /etc/apache2/apache2.conf
service apache2 restart
@@ -22,7 +22,7 @@ SCRIPT
$script_mysql = <<SCRIPT
export DEBIAN_FRONTEND=noninteractive
apt-get update
-apt-get install -y apache2 php5 php5-mysql php5-xdebug mysql-server mysql-client
+apt-get install -y apache2 php5 php5-gd php5-curl php5-mysql php5-xdebug mysql-server mysql-client
apt-get clean -y
echo "ServerName localhost" >> /etc/apache2/apache2.conf
service apache2 restart
@@ -45,7 +45,7 @@ SCRIPT
$script_postgres = <<SCRIPT
export DEBIAN_FRONTEND=noninteractive
apt-get update
-apt-get install -y apache2 php5 php5-pgsql php5-xdebug postgresql postgresql-contrib
+apt-get install -y apache2 php5 php5-gd php5-curl php5-pgsql php5-xdebug postgresql postgresql-contrib
apt-get clean -y
echo "ServerName localhost" >> /etc/apache2/apache2.conf
service apache2 restart