diff options
Diffstat (limited to 'ipaserver/install/odsexporterinstance.py')
-rw-r--r-- | ipaserver/install/odsexporterinstance.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ipaserver/install/odsexporterinstance.py b/ipaserver/install/odsexporterinstance.py index 463e9a675..5b6245bc4 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, start_tls=False): + def __init__(self, fstore=None, dm_password=None, ldapi=False, + start_tls=False, autobind=ipaldap.AUTOBIND_DISABLED): service.Service.__init__( self, "ipa-ods-exporter", service_desc="IPA OpenDNSSEC exporter daemon", dm_password=dm_password, - ldapi=False, - autobind=ipaldap.AUTOBIND_DISABLED, + ldapi=ldapi, + autobind=autobind, start_tls=start_tls ) self.dm_password = dm_password |