summaryrefslogtreecommitdiffstats
path: root/base/server/sbin
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2015-06-11 17:48:05 -0400
committerEndi S. Dewata <edewata@redhat.com>2015-06-11 21:15:56 -0400
commit3b54cb0a675bbdf345e3fd5c914886483d98a821 (patch)
tree4a223162e579b6ea927dc7f34f6168a89ec14b0e /base/server/sbin
parent8da79f75c9041b6391f7e100b690e4297c356d0a (diff)
downloadpki-3b54cb0a675bbdf345e3fd5c914886483d98a821.tar.gz
pki-3b54cb0a675bbdf345e3fd5c914886483d98a821.tar.xz
pki-3b54cb0a675bbdf345e3fd5c914886483d98a821.zip
Cleaned up links in main page.
The ROOT's index.jsp has been modified to show the links to all subsystems installed on the instance. When opened, it will show the services provided by the subsystem. The pkispawn output has been modified to show the subsystem URL more consistently: https://<hostname>:<port>/<subsystem> In all subsystems except TPS the page will redirect to: https://<hostname>:<port>/<subsystem>/services
Diffstat (limited to 'base/server/sbin')
-rwxr-xr-xbase/server/sbin/pkispawn11
1 files changed, 3 insertions, 8 deletions
diff --git a/base/server/sbin/pkispawn b/base/server/sbin/pkispawn
index d4cfe05d7..d153c031d 100755
--- a/base/server/sbin/pkispawn
+++ b/base/server/sbin/pkispawn
@@ -639,14 +639,9 @@ def print_install_information(mdict):
# Stand-alone PKI KRA/OCSP (External CA Step 1)
print log.PKI_CONFIGURATION_STANDALONE_1 % config.pki_subsystem
else:
- if (config.pki_subsystem == "TPS"):
- print log.PKI_ACCESS_TPS_URL % (mdict['pki_hostname'],
- mdict['pki_https_port'],
- config.pki_subsystem.lower())
- else:
- print log.PKI_ACCESS_URL % (mdict['pki_hostname'],
- mdict['pki_https_port'],
- config.pki_subsystem.lower())
+ print log.PKI_ACCESS_URL % (mdict['pki_hostname'],
+ mdict['pki_https_port'],
+ config.pki_subsystem.lower())
if not config.str2bool(mdict['pki_enable_on_system_boot']):
print log.PKI_SYSTEM_BOOT_STATUS_MESSAGE % "disabled"
else: