diff options
author | Rob Crittenden <rcritten@redhat.com> | 2009-11-25 17:16:06 -0500 |
---|---|---|
committer | Jason Gerard DeRose <jderose@redhat.com> | 2009-12-01 09:11:23 -0700 |
commit | 384eec771d304df730a6545e777324b310818e56 (patch) | |
tree | 77c1a903cd3ef2761cc916925229a9e4440ddb8e /install/tools/ipa-replica-install | |
parent | 2f8129a17c11e8bff466f702bbfc1ed43b860ebe (diff) | |
download | freeipa-384eec771d304df730a6545e777324b310818e56.tar.gz freeipa-384eec771d304df730a6545e777324b310818e56.tar.xz freeipa-384eec771d304df730a6545e777324b310818e56.zip |
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.
Diffstat (limited to 'install/tools/ipa-replica-install')
-rwxr-xr-x | install/tools/ipa-replica-install | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/install/tools/ipa-replica-install b/install/tools/ipa-replica-install index e8fabd705..ae6137d01 100755 --- a/install/tools/ipa-replica-install +++ b/install/tools/ipa-replica-install @@ -349,14 +349,6 @@ def main(): CA.fix_ra_perms() service.restart("httpd") - # Create the config file - fd = open("/etc/ipa/ipa.conf", "w") - fd.write("[defaults]\n") - fd.write("server=" + config.host_name + "\n") - fd.write("realm=" + config.realm_name + "\n") - fd.write("domain=" + config.domain_name + "\n") - fd.close() - # Create the management framework config file fd = open("/etc/ipa/default.conf", "w") fd.write("[global]\n") |