summaryrefslogtreecommitdiffstats
path: root/base/tps/setup
diff options
context:
space:
mode:
authorEndi Sukma Dewata <edewata@redhat.com>2013-05-24 02:34:13 -0400
committerEndi Sukma Dewata <edewata@redhat.com>2013-06-03 19:08:17 -0400
commitf9277f58629f5228f1717c3575e79d154da47858 (patch)
tree30b41dda169090c18df8a5d2e77d60f3d77303df /base/tps/setup
parent1bbcc9fab2f87f349f3b2d64a980b100c5c1707c (diff)
downloadpki-f9277f58629f5228f1717c3575e79d154da47858.tar.gz
pki-f9277f58629f5228f1717c3575e79d154da47858.tar.xz
pki-f9277f58629f5228f1717c3575e79d154da47858.zip
Renamed CA_PORT into PKI_CA_PORT.
The CA_PORT variable has been renamed into PKI_CA_PORT for consistency.
Diffstat (limited to 'base/tps/setup')
-rwxr-xr-xbase/tps/setup/create.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/base/tps/setup/create.pl b/base/tps/setup/create.pl
index 4b88bc6cd..11efe36f0 100755
--- a/base/tps/setup/create.pl
+++ b/base/tps/setup/create.pl
@@ -298,14 +298,14 @@ ASK_PKI_CA_HOSTNAME:
goto ASK_PKI_CA_HOSTNAME;
}
-ASK_CA_PORT:
+ASK_PKI_CA_PORT:
print ("Enter the secure end entity port number of the CA [443]: ");
chomp ($caPort = <STDIN>);
if ($caPort eq "") {
$caPort = "443";
}
if ($caPort eq "") {
- goto ASK_CA_PORT;
+ goto ASK_PKI_CA_PORT;
}
print ("\n");
@@ -693,7 +693,7 @@ sub CopyTemplate
s/\[TUS_ROOT\]/$tusRoot/g;
s/\[TUS_PASS\]/$tusPass/g;
s/\[PKI_CA_HOSTNAME\]/$caHost/g;
- s/\[CA_PORT\]/$caPort/g;
+ s/\[PKI_CA_PORT\]/$caPort/g;
s/\[DRM_HOST\]/$drmHost/g;
s/\[DRM_PORT\]/$drmPort/g;
s/\[SERVER_KEYGEN\]/$serverKeyGen/g;