summaryrefslogtreecommitdiff
path: root/source4/scripting
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2009-08-10 21:46:20 +1000
committerAndrew Bartlett <abartlet@samba.org>2009-08-12 10:01:48 +1000
commit6dc41bf27c6157f981b9b45b026da41e9a3df184 (patch)
treec439dc4e716179d7b43bab91ef135ac9165c6a84 /source4/scripting
parentf0decfe5c2395173fb632e9bfdea3edf43b1b434 (diff)
downloadsamba-6dc41bf27c6157f981b9b45b026da41e9a3df184.tar.gz
samba-6dc41bf27c6157f981b9b45b026da41e9a3df184.tar.bz2
samba-6dc41bf27c6157f981b9b45b026da41e9a3df184.zip
s4:provision Make the --ol-slapd paramter take the full path to slapd
Diffstat (limited to 'source4/scripting')
-rw-r--r--source4/scripting/python/samba/provision.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/source4/scripting/python/samba/provision.py b/source4/scripting/python/samba/provision.py
index e099184923..634904441a 100644
--- a/source4/scripting/python/samba/provision.py
+++ b/source4/scripting/python/samba/provision.py
@@ -1304,9 +1304,8 @@ def provision_backend(setup_dir=None, message=None,
# if openldap-backend was chosen, check if path to slapd was given and exists
if ldap_backend_type == "openldap" and ol_slapd is None:
- sys.exit("Warning: OpenLDAP-Backend must be setup with path to slapd (OpenLDAP-Daemon), e.g. --ol-slapd=\"/usr/local/libexec\"!")
+ sys.exit("Warning: OpenLDAP-Backend must be setup with path to slapd (OpenLDAP-Daemon), e.g. --ol-slapd=\"/usr/local/libexec/slapd\"!")
if ldap_backend_type == "openldap" and ol_slapd is not None:
- ol_slapd = ol_slapd + "/slapd"
if not os.path.exists(ol_slapd):
message (ol_slapd)
sys.exit("Warning: Given Path to slapd (OpenLDAP-Daemon) does not exist!")