diff options
author | Bernhard Ankenbrand <b.ankenbrand@media-one.de> | 2017-07-03 12:56:57 +0200 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2017-07-03 21:49:10 -0700 |
commit | fdd99adea830cfa84338d8e4a72ef4fd55b9e179 (patch) | |
tree | 8af7eac5fc7301e593b1f9d87394c8972f06adba /Vagrantfile | |
parent | 6ef05f1f11413fcdb40ce7d8bfb5a21763461f6e (diff) |
added missing php5-ldap module to Vagrantfile
Diffstat (limited to 'Vagrantfile')
-rw-r--r-- | Vagrantfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile index 30fd6d1d..e25d755e 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 php5-curl && \ +apt-get install -y apache2 php5 php5-sqlite php5-mysql php5-pgsql php5-gd curl unzip php5-curl php5-ldap && \ apt-get clean && \ echo "ServerName localhost" >> /etc/apache2/apache2.conf && \ sed -ri 's/AllowOverride None/AllowOverride All/g' /etc/apache2/apache2.conf && \ |