diff options
author | elijan sejic <elijans@gmail.com> | 2016-09-15 09:23:40 +0930 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2016-09-14 19:53:40 -0400 |
commit | aa9a8616481cf4002d16457b8350f544dfdb37bf (patch) | |
tree | cb920b7a8c8544ae46d52fbb01c4cfcac0dc13af /Vagrantfile | |
parent | 20c187880ce9b5b4b55d3027f5df07ce042ad7ec (diff) |
add php-curl extension (#2665)
needed when executing selenium tests on Vagrant machine
Diffstat (limited to 'Vagrantfile')
-rw-r--r-- | Vagrantfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile index 8e958c25..30fd6d1d 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -1,7 +1,7 @@ $script = <<SCRIPT apt-get update -apt-get install -y apache2 php5 php5-sqlite php5-mysql php5-pgsql php5-gd curl unzip && \ +apt-get install -y apache2 php5 php5-sqlite php5-mysql php5-pgsql php5-gd curl unzip php5-curl && \ apt-get clean && \ echo "ServerName localhost" >> /etc/apache2/apache2.conf && \ sed -ri 's/AllowOverride None/AllowOverride All/g' /etc/apache2/apache2.conf && \ |