From 4f92aa1026a2ddf6e3e34f386bc4dff5aec1d9e7 Mon Sep 17 00:00:00 2001 From: shreyas Date: Thu, 6 Oct 2016 14:58:31 +0530 Subject: [PATCH] [Fix] Install Python Ldap dependencies during bench installation --- playbooks/develop/centos.yml | 4 ++++ playbooks/develop/debian.yml | 4 ++++ playbooks/develop/ubuntu.yml | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/playbooks/develop/centos.yml b/playbooks/develop/centos.yml index 81097b1f..83523199 100755 --- a/playbooks/develop/centos.yml +++ b/playbooks/develop/centos.yml @@ -41,6 +41,10 @@ - libtiff-devel - tcl-devel - tk-devel + + # Python LDAP + - openldap-devel + become: yes become_user: root diff --git a/playbooks/develop/debian.yml b/playbooks/develop/debian.yml index 90d95083..16bd6154 100755 --- a/playbooks/develop/debian.yml +++ b/playbooks/develop/debian.yml @@ -52,6 +52,10 @@ # Ensure apt-transport-https - apt-transport-https + # Python LDAP + - libsasl2-dev + - libldap2-dev + become: yes become_user: root diff --git a/playbooks/develop/ubuntu.yml b/playbooks/develop/ubuntu.yml index f25af6e7..b23d424a 100644 --- a/playbooks/develop/ubuntu.yml +++ b/playbooks/develop/ubuntu.yml @@ -37,6 +37,10 @@ # Ensure apt-transport-https - apt-transport-https + # Python LDAP + - libsasl2-dev + - libldap2-dev + become: yes become_user: root