diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-05-10 13:45:09 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-05-10 13:45:09 -0400 |
commit | 94a5b12e68fc5e5f6aee7bf1d6d25427421aba7a (patch) | |
tree | aa1f86e9fd134ec60534446948dcd2d54e02e5f7 /Vagrantfile | |
parent | 98aab0d99465b40907bbc1f1108ea20db290e036 (diff) | |
parent | ec24efa2d9599eaf6cbc39da25cffeaff555ba3c (diff) |
Merge pull-request #847 (recurring tasks)
Diffstat (limited to 'Vagrantfile')
-rw-r--r-- | Vagrantfile | 6 |
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 |