mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Fix setup script to use the right module name
This commit is contained in:
parent
bde9959091
commit
372c8d23cd
@ -246,7 +246,7 @@ def main():
|
|||||||
return 1
|
return 1
|
||||||
|
|
||||||
# Configure ipa.conf
|
# Configure ipa.conf
|
||||||
ipaconf = ipaclient.ipachangeconf.IPAChangeConf("IPA Installer")
|
ipaconf = ipachangeconf.IPAChangeConf("IPA Installer")
|
||||||
ipaconf.setOptionAssignment(" = ")
|
ipaconf.setOptionAssignment(" = ")
|
||||||
ipaconf.setSectionNameDelimiters(("[","]"))
|
ipaconf.setSectionNameDelimiters(("[","]"))
|
||||||
|
|
||||||
@ -263,7 +263,7 @@ def main():
|
|||||||
ipaconf.newConf("/etc/ipa/ipa.conf", opts)
|
ipaconf.newConf("/etc/ipa/ipa.conf", opts)
|
||||||
|
|
||||||
# Configure ldap.conf
|
# Configure ldap.conf
|
||||||
ldapconf = ipaclient.ipachangeconf.IPAChangeConf("IPA Installer")
|
ldapconf = ipachangeconf.IPAChangeConf("IPA Installer")
|
||||||
ldapconf.setOptionAssignment(" ")
|
ldapconf.setOptionAssignment(" ")
|
||||||
|
|
||||||
opts = [{'name':'comment', 'type':'comment', 'value':'File modified by ipa-client-install'},
|
opts = [{'name':'comment', 'type':'comment', 'value':'File modified by ipa-client-install'},
|
||||||
@ -283,7 +283,7 @@ def main():
|
|||||||
|
|
||||||
if not "" == ipasrv.getRealmName():
|
if not "" == ipasrv.getRealmName():
|
||||||
#Configure krb5.conf
|
#Configure krb5.conf
|
||||||
krbconf = ipaclient.ipachangeconf.IPAChangeConf("IPA Installer")
|
krbconf = ipachangeconf.IPAChangeConf("IPA Installer")
|
||||||
krbconf.setOptionAssignment(" = ")
|
krbconf.setOptionAssignment(" = ")
|
||||||
krbconf.setSectionNameDelimiters(("[","]"))
|
krbconf.setSectionNameDelimiters(("[","]"))
|
||||||
krbconf.setSubSectionDelimiters(("{","}"))
|
krbconf.setSubSectionDelimiters(("{","}"))
|
||||||
|
Loading…
Reference in New Issue
Block a user