From 89c64af144c9d10ff70a8a7e6001214f22fdde38 Mon Sep 17 00:00:00 2001 From: tohe Date: Thu, 27 Aug 2020 19:05:50 +0200 Subject: [PATCH] select correct default for ldap uri, selects not php version for compatibility with Ubuntu --- manifests/lam.pp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manifests/lam.pp b/manifests/lam.pp index 0063bb9..752f683 100644 --- a/manifests/lam.pp +++ b/manifests/lam.pp @@ -33,7 +33,7 @@ class wmdeit_ldap::lam( } class { 'apache::mod::php': - php_version => '7.3' +# php_version => '7.3' } class { '::php': @@ -126,8 +126,8 @@ class wmdeit_ldap::lam( }, server_url => $conf['server_url'] ? { - undef => "", - default => 'ldap://localhost:389' + undef => 'ldap://localhost:389', + default => $conf['server_url'], }, } }