From 384eec771d304df730a6545e777324b310818e56 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Wed, 25 Nov 2009 17:16:06 -0500 Subject: Replace /etc/ipa/ipa.conf with /etc/ipa/default.conf The new framework uses default.conf instead of ipa.conf. This is useful also because Apache uses a configuration file named ipa.conf. This wipes out the last vestiges of the old ipa.conf from v1. --- contrib/RHEL4/ipa-client-setup | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'contrib') diff --git a/contrib/RHEL4/ipa-client-setup b/contrib/RHEL4/ipa-client-setup index 8e66ffdc8..8f43cc84b 100644 --- a/contrib/RHEL4/ipa-client-setup +++ b/contrib/RHEL4/ipa-client-setup @@ -269,14 +269,14 @@ def main(): opts = [{'name':'comment', 'type':'comment', 'value':'File modified by ipa-client-install'}, {'name':'empty', 'type':'empty'}] - #[defaults] - defopts = [{'name':'server', 'type':'option', 'value':ipasrv.getServerName()}, + #[global] + defopts = [{'name':'xmlrpc_uri', 'type':'option', 'value':'https://%s/ipa/xml' % ipasrv.getServerName()}, {'name':'realm', 'type':'option', 'value':ipasrv.getRealmName()}] - opts.append({'name':'defaults', 'type':'section', 'value':defopts}) + opts.append({'name':'global', 'type':'section', 'value':defopts}) opts.append({'name':'empty', 'type':'empty'}) - ipaconf.newConf("/etc/ipa/ipa.conf", opts) + ipaconf.newConf("/etc/ipa/default.conf", opts) # Configure ldap.conf ldapconf = ipachangeconf.IPAChangeConf("IPA Installer") -- cgit