summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRob Crittenden <rcrit@ipa.greyoak.com>2008-08-14 16:58:00 -0400
committerRob Crittenden <rcrit@ipa.greyoak.com>2008-08-14 18:07:52 -0400
commit4be5d862a6a90c61546fc1be082bd3c4f63d8189 (patch)
treee511c7908a0697cea73c12c4210ed7a721b7ba65
parent8edc9aa8aa9c109aa2c904161985288710748333 (diff)
downloadfreeipa-4be5d862a6a90c61546fc1be082bd3c4f63d8189.tar.gz
freeipa-4be5d862a6a90c61546fc1be082bd3c4f63d8189.tar.xz
freeipa-4be5d862a6a90c61546fc1be082bd3c4f63d8189.zip
When installing with an IPA-created CA generate the Firefox autoconfiguration files.
458871
-rw-r--r--ipa-server/ipa-install/ipa-server-install4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipa-server/ipa-install/ipa-server-install b/ipa-server/ipa-install/ipa-server-install
index d168570ab..d48791720 100644
--- a/ipa-server/ipa-install/ipa-server-install
+++ b/ipa-server/ipa-install/ipa-server-install
@@ -515,10 +515,10 @@ def main():
http = ipaserver.httpinstance.HTTPInstance(fstore)
if options.http_pkcs12:
pkcs12_info = (options.http_pkcs12, pw_name)
- http.create_instance(realm_name, host_name, domain_name, False, pkcs12_info)
+ http.create_instance(realm_name, host_name, domain_name, autoconfig=False, pkcs12_info=pkcs12_info)
os.remove(pw_name)
else:
- http.create_instance(realm_name, host_name, domain_name, False)
+ http.create_instance(realm_name, host_name, domain_name, autoconfig=True)
# Create the config file
fstore.backup_file("/etc/ipa/ipa.conf")