summaryrefslogtreecommitdiffstats
path: root/install/tools/ipa-replica-install
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2012-10-04 17:08:17 +0200
committerRob Crittenden <rcritten@redhat.com>2012-10-04 18:08:04 -0400
commit247a3a43b7fb9eac9af9497e61cdc9c964bee4ff (patch)
tree1f107c410a48a62c1c4a21cf18a73818ac2c13fd /install/tools/ipa-replica-install
parent206b6ca04b0e06b3bebf34d985f5310489fd7aac (diff)
downloadfreeipa-247a3a43b7fb9eac9af9497e61cdc9c964bee4ff.tar.gz
freeipa-247a3a43b7fb9eac9af9497e61cdc9c964bee4ff.tar.xz
freeipa-247a3a43b7fb9eac9af9497e61cdc9c964bee4ff.zip
Build and installation of Kerberos authentication extension
This patch is adding a build of kerberosauth.xpi (FF Kerberos authentication extension). Currently the build is done in install phase of FreeIPA server. It is to allow signing of the extension by singing certificate. The signing might not be necessary because the only outcome is that in extension installation FF doesn't show that the maker is not verified. It shows text: 'Object signing cert'. This might be a bug in httpinstance.py:262(db.create_signing_cert("Signing-Cert", "Object Signing Cert", ca_db)) The value is in place of hostname parameter. If the extension is not signed, it can be created in rpm build phase, which should make upgrades easier. Current implementation doesn't handle upgrades yet. In order to keep extension and config pages not dependent on a realm, a krb.js.teplate file was created. This template is used for creating a /usr/share/ipa/html/krb.js file in install phase which holds FreeIPA's realm and domain information. This information can be then used by config pages by importing this file. Ticket: https://fedorahosted.org/freeipa/ticket/3094
Diffstat (limited to 'install/tools/ipa-replica-install')
-rwxr-xr-xinstall/tools/ipa-replica-install2
1 files changed, 2 insertions, 0 deletions
diff --git a/install/tools/ipa-replica-install b/install/tools/ipa-replica-install
index 55417b72f..c1679c723 100755
--- a/install/tools/ipa-replica-install
+++ b/install/tools/ipa-replica-install
@@ -207,6 +207,8 @@ def install_http(config, auto_redirect):
try:
shutil.copy(config.dir + "/preferences.html", "/usr/share/ipa/html/preferences.html")
shutil.copy(config.dir + "/configure.jar", "/usr/share/ipa/html/configure.jar")
+ shutil.copy(config.dir + "/krb.js", "/usr/share/ipa/html/krb.js")
+ shutil.copy(config.dir + "/kerberosauth.xpi", "/usr/share/ipa/html/kerberosauth.xpi")
except Exception, e:
print "error copying files: " + str(e)
sys.exit(1)