summaryrefslogtreecommitdiffstats
path: root/base/deploy/src/scriptlets/pkiparser.py
diff options
context:
space:
mode:
authorEndi Sukma Dewata <edewata@redhat.com>2012-10-03 19:09:08 -0500
committerAde Lee <alee@redhat.com>2012-10-07 23:53:23 -0400
commit79a3d828d4851afb66e3c18b812ae31171c39a6e (patch)
tree6eca485f9750dcc0688bc87d0e195ffa38af903c /base/deploy/src/scriptlets/pkiparser.py
parentda73f97ee897782a4e8fc326cd428bcd7ba5fd31 (diff)
downloadpki-79a3d828d4851afb66e3c18b812ae31171c39a6e.tar.gz
pki-79a3d828d4851afb66e3c18b812ae31171c39a6e.tar.xz
pki-79a3d828d4851afb66e3c18b812ae31171c39a6e.zip
Renamed "shared" folder to "server".
The "shared" folder in /usr/share/pki has been renamed to "server" since it contains only server files. Ticket #353
Diffstat (limited to 'base/deploy/src/scriptlets/pkiparser.py')
-rw-r--r--base/deploy/src/scriptlets/pkiparser.py18
1 files changed, 7 insertions, 11 deletions
diff --git a/base/deploy/src/scriptlets/pkiparser.py b/base/deploy/src/scriptlets/pkiparser.py
index a349436ff..cb419031f 100644
--- a/base/deploy/src/scriptlets/pkiparser.py
+++ b/base/deploy/src/scriptlets/pkiparser.py
@@ -358,9 +358,9 @@ def compose_pki_master_dictionary():
config.pki_master_dict['pki_source_setup_path'] =\
os.path.join(config.PKI_DEPLOYMENT_SOURCE_ROOT,
"setup")
- config.pki_master_dict['pki_source_shared_path'] =\
+ config.pki_master_dict['pki_source_server_path'] =\
os.path.join(config.PKI_DEPLOYMENT_SOURCE_ROOT,
- "shared",
+ "server",
"conf")
config.pki_master_dict['pki_source_cs_cfg'] =\
os.path.join(config.pki_master_dict['pki_source_conf_path'],
@@ -406,24 +406,20 @@ def compose_pki_master_dictionary():
"lib")
config.pki_master_dict['pki_tomcat_systemd'] =\
config.PKI_DEPLOYMENT_TOMCAT_SYSTEMD
- config.pki_master_dict['pki_shared_webapps_path'] =\
- os.path.join(config.PKI_DEPLOYMENT_SOURCE_ROOT,
- "shared",
- "webapps")
config.pki_master_dict['pki_source_catalina_properties'] =\
- os.path.join(config.pki_master_dict['pki_source_shared_path'],
+ os.path.join(config.pki_master_dict['pki_source_server_path'],
"catalina.properties")
config.pki_master_dict['pki_source_servercertnick_conf'] =\
- os.path.join(config.pki_master_dict['pki_source_shared_path'],
+ os.path.join(config.pki_master_dict['pki_source_server_path'],
"serverCertNick.conf")
config.pki_master_dict['pki_source_server_xml'] =\
- os.path.join(config.pki_master_dict['pki_source_shared_path'],
+ os.path.join(config.pki_master_dict['pki_source_server_path'],
"server.xml")
config.pki_master_dict['pki_source_context_xml'] =\
- os.path.join(config.pki_master_dict['pki_source_shared_path'],
+ os.path.join(config.pki_master_dict['pki_source_server_path'],
"context.xml")
config.pki_master_dict['pki_source_tomcat_conf'] =\
- os.path.join(config.pki_master_dict['pki_source_shared_path'],
+ os.path.join(config.pki_master_dict['pki_source_server_path'],
"tomcat.conf")
if config.pki_master_dict['pki_subsystem'] == "CA":
config.pki_master_dict['pki_source_emails'] =\