From 7b6bee030dac08807f254fdf58ba867c36cab23d Mon Sep 17 00:00:00 2001 From: Martin Babinsky Date: Thu, 12 Mar 2015 16:14:22 +0100 Subject: ipa-dns-install: use STARTTLS to connect to DS BindInstance et al. now use STARTTLS to set up secure connection to DS during ipa-dns-install. This fixes https://fedorahosted.org/freeipa/ticket/4933 Reviewed-By: Martin Basti --- ipaserver/install/odsexporterinstance.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'ipaserver/install/odsexporterinstance.py') diff --git a/ipaserver/install/odsexporterinstance.py b/ipaserver/install/odsexporterinstance.py index e01550446..463e9a675 100644 --- a/ipaserver/install/odsexporterinstance.py +++ b/ipaserver/install/odsexporterinstance.py @@ -19,13 +19,14 @@ from ipalib import errors class ODSExporterInstance(service.Service): - def __init__(self, fstore=None, dm_password=None): + def __init__(self, fstore=None, dm_password=None, start_tls=False): service.Service.__init__( self, "ipa-ods-exporter", service_desc="IPA OpenDNSSEC exporter daemon", dm_password=dm_password, ldapi=False, - autobind=ipaldap.AUTOBIND_DISABLED + autobind=ipaldap.AUTOBIND_DISABLED, + start_tls=start_tls ) self.dm_password = dm_password self.ods_uid = None -- cgit