summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
authorEndi Sukma Dewata <edewata@redhat.com>2013-04-05 15:20:01 -0400
committerEndi Sukma Dewata <edewata@redhat.com>2013-04-09 09:40:09 -0400
commit62ccd4ca0addd8a4c74bcbdfca6aea0c9381907f (patch)
treead78a933e29a517bae7876248820c40b9b5db197 /base
parent2e0194dd7791eaf07d6e9eb26df57e5a4677f426 (diff)
downloadpki-62ccd4ca0addd8a4c74bcbdfca6aea0c9381907f.tar.gz
pki-62ccd4ca0addd8a4c74bcbdfca6aea0c9381907f.tar.xz
pki-62ccd4ca0addd8a4c74bcbdfca6aea0c9381907f.zip
Renamed base/deploy to base/server.
The base/deploy folder has been renamed to base/server to match the package name. The pki.conf has been moved into pki-base package. Ticket #553, #564
Diffstat (limited to 'base')
-rw-r--r--base/CMakeLists.txt2
-rw-r--r--base/server/CMakeLists.txt (renamed from base/deploy/CMakeLists.txt)2
-rw-r--r--base/server/LICENSE (renamed from base/deploy/LICENSE)0
-rw-r--r--base/server/config/pkislots.cfg (renamed from base/deploy/config/pkislots.cfg)0
-rw-r--r--base/server/config/sample.cfg (renamed from base/deploy/config/sample.cfg)0
-rw-r--r--base/server/config/sampleCAclone.cfg (renamed from base/deploy/config/sampleCAclone.cfg)0
-rw-r--r--base/server/config/sampleExternalSignedCA-step1.cfg (renamed from base/deploy/config/sampleExternalSignedCA-step1.cfg)0
-rw-r--r--base/server/config/sampleExternalSignedCA-step2.cfg (renamed from base/deploy/config/sampleExternalSignedCA-step2.cfg)0
-rw-r--r--base/server/config/sampleKRA.cfg (renamed from base/deploy/config/sampleKRA.cfg)0
-rw-r--r--base/server/config/sampleKRAclone.cfg (renamed from base/deploy/config/sampleKRAclone.cfg)0
-rw-r--r--base/server/config/sampleSubordinateCA.cfg (renamed from base/deploy/config/sampleSubordinateCA.cfg)0
-rw-r--r--base/server/etc/default.cfg (renamed from base/deploy/etc/default.cfg)0
-rw-r--r--base/server/etc/pki.conf (renamed from base/deploy/etc/pki.conf)0
-rw-r--r--base/server/man/man5/pki_default.cfg.5 (renamed from base/deploy/man/man5/pki_default.cfg.5)0
-rw-r--r--base/server/man/man8/pkidestroy.8 (renamed from base/deploy/man/man8/pkidestroy.8)0
-rw-r--r--base/server/man/man8/pkispawn.8 (renamed from base/deploy/man/man8/pkispawn.8)0
-rw-r--r--base/server/scripts/operations (renamed from base/deploy/scripts/operations)0
-rwxr-xr-xbase/server/scripts/pkidaemon (renamed from base/deploy/scripts/pkidaemon)0
-rw-r--r--base/server/src/engine/pkiconfig.py (renamed from base/deploy/src/engine/pkiconfig.py)0
-rw-r--r--base/server/src/engine/pkihelper.py (renamed from base/deploy/src/engine/pkihelper.py)0
-rw-r--r--base/server/src/engine/pkilogging.py (renamed from base/deploy/src/engine/pkilogging.py)0
-rw-r--r--base/server/src/engine/pkimanifest.py (renamed from base/deploy/src/engine/pkimanifest.py)0
-rw-r--r--base/server/src/engine/pkimessages.py (renamed from base/deploy/src/engine/pkimessages.py)0
-rw-r--r--base/server/src/engine/pkiparser.py (renamed from base/deploy/src/engine/pkiparser.py)0
-rw-r--r--base/server/src/engine/pkiscriptlet.py (renamed from base/deploy/src/engine/pkiscriptlet.py)0
-rwxr-xr-xbase/server/src/pkidestroy (renamed from base/deploy/src/pkidestroy)0
-rwxr-xr-xbase/server/src/pkispawn (renamed from base/deploy/src/pkispawn)0
-rw-r--r--base/server/src/scriptlets/configuration.py (renamed from base/deploy/src/scriptlets/configuration.py)0
-rw-r--r--base/server/src/scriptlets/finalization.py (renamed from base/deploy/src/scriptlets/finalization.py)0
-rw-r--r--base/server/src/scriptlets/infrastructure_layout.py (renamed from base/deploy/src/scriptlets/infrastructure_layout.py)0
-rw-r--r--base/server/src/scriptlets/initialization.py (renamed from base/deploy/src/scriptlets/initialization.py)0
-rw-r--r--base/server/src/scriptlets/instance_layout.py (renamed from base/deploy/src/scriptlets/instance_layout.py)0
-rw-r--r--base/server/src/scriptlets/security_databases.py (renamed from base/deploy/src/scriptlets/security_databases.py)0
-rw-r--r--base/server/src/scriptlets/selinux_setup.py (renamed from base/deploy/src/scriptlets/selinux_setup.py)0
-rw-r--r--base/server/src/scriptlets/slot_substitution.py (renamed from base/deploy/src/scriptlets/slot_substitution.py)0
-rw-r--r--base/server/src/scriptlets/subsystem_layout.py (renamed from base/deploy/src/scriptlets/subsystem_layout.py)0
-rw-r--r--base/server/src/scriptlets/webapp_deployment.py (renamed from base/deploy/src/scriptlets/webapp_deployment.py)0
37 files changed, 2 insertions, 2 deletions
diff --git a/base/CMakeLists.txt b/base/CMakeLists.txt
index f646cfb60..0a8e51647 100644
--- a/base/CMakeLists.txt
+++ b/base/CMakeLists.txt
@@ -9,7 +9,7 @@ if (APPLICATION_FLAVOR_PKI_CORE)
add_subdirectory(common)
add_subdirectory(native-tools)
add_subdirectory(java-tools)
- add_subdirectory(deploy)
+ add_subdirectory(server)
if(BUILD_PKI_SELINUX)
add_subdirectory(selinux)
endif(BUILD_PKI_SELINUX)
diff --git a/base/deploy/CMakeLists.txt b/base/server/CMakeLists.txt
index 9c2b7f942..1f638dc95 100644
--- a/base/deploy/CMakeLists.txt
+++ b/base/server/CMakeLists.txt
@@ -1,4 +1,4 @@
-project(deploy)
+project(server)
set(PKI_SUBSYSTEMS
ca
diff --git a/base/deploy/LICENSE b/base/server/LICENSE
index e281f4362..e281f4362 100644
--- a/base/deploy/LICENSE
+++ b/base/server/LICENSE
diff --git a/base/deploy/config/pkislots.cfg b/base/server/config/pkislots.cfg
index 1cb463bfe..1cb463bfe 100644
--- a/base/deploy/config/pkislots.cfg
+++ b/base/server/config/pkislots.cfg
diff --git a/base/deploy/config/sample.cfg b/base/server/config/sample.cfg
index d2334c754..d2334c754 100644
--- a/base/deploy/config/sample.cfg
+++ b/base/server/config/sample.cfg
diff --git a/base/deploy/config/sampleCAclone.cfg b/base/server/config/sampleCAclone.cfg
index 0aef7b25a..0aef7b25a 100644
--- a/base/deploy/config/sampleCAclone.cfg
+++ b/base/server/config/sampleCAclone.cfg
diff --git a/base/deploy/config/sampleExternalSignedCA-step1.cfg b/base/server/config/sampleExternalSignedCA-step1.cfg
index 35b3d2460..35b3d2460 100644
--- a/base/deploy/config/sampleExternalSignedCA-step1.cfg
+++ b/base/server/config/sampleExternalSignedCA-step1.cfg
diff --git a/base/deploy/config/sampleExternalSignedCA-step2.cfg b/base/server/config/sampleExternalSignedCA-step2.cfg
index c106d63c0..c106d63c0 100644
--- a/base/deploy/config/sampleExternalSignedCA-step2.cfg
+++ b/base/server/config/sampleExternalSignedCA-step2.cfg
diff --git a/base/deploy/config/sampleKRA.cfg b/base/server/config/sampleKRA.cfg
index 8cdfb9fa0..8cdfb9fa0 100644
--- a/base/deploy/config/sampleKRA.cfg
+++ b/base/server/config/sampleKRA.cfg
diff --git a/base/deploy/config/sampleKRAclone.cfg b/base/server/config/sampleKRAclone.cfg
index 96025cf07..96025cf07 100644
--- a/base/deploy/config/sampleKRAclone.cfg
+++ b/base/server/config/sampleKRAclone.cfg
diff --git a/base/deploy/config/sampleSubordinateCA.cfg b/base/server/config/sampleSubordinateCA.cfg
index 8b616163a..8b616163a 100644
--- a/base/deploy/config/sampleSubordinateCA.cfg
+++ b/base/server/config/sampleSubordinateCA.cfg
diff --git a/base/deploy/etc/default.cfg b/base/server/etc/default.cfg
index e848363ab..e848363ab 100644
--- a/base/deploy/etc/default.cfg
+++ b/base/server/etc/default.cfg
diff --git a/base/deploy/etc/pki.conf b/base/server/etc/pki.conf
index 24decec52..24decec52 100644
--- a/base/deploy/etc/pki.conf
+++ b/base/server/etc/pki.conf
diff --git a/base/deploy/man/man5/pki_default.cfg.5 b/base/server/man/man5/pki_default.cfg.5
index ec2379a9f..ec2379a9f 100644
--- a/base/deploy/man/man5/pki_default.cfg.5
+++ b/base/server/man/man5/pki_default.cfg.5
diff --git a/base/deploy/man/man8/pkidestroy.8 b/base/server/man/man8/pkidestroy.8
index 407a915aa..407a915aa 100644
--- a/base/deploy/man/man8/pkidestroy.8
+++ b/base/server/man/man8/pkidestroy.8
diff --git a/base/deploy/man/man8/pkispawn.8 b/base/server/man/man8/pkispawn.8
index d3e980302..d3e980302 100644
--- a/base/deploy/man/man8/pkispawn.8
+++ b/base/server/man/man8/pkispawn.8
diff --git a/base/deploy/scripts/operations b/base/server/scripts/operations
index 50dd4e4fd..50dd4e4fd 100644
--- a/base/deploy/scripts/operations
+++ b/base/server/scripts/operations
diff --git a/base/deploy/scripts/pkidaemon b/base/server/scripts/pkidaemon
index 3e1d27a40..3e1d27a40 100755
--- a/base/deploy/scripts/pkidaemon
+++ b/base/server/scripts/pkidaemon
diff --git a/base/deploy/src/engine/pkiconfig.py b/base/server/src/engine/pkiconfig.py
index ad6c22251..ad6c22251 100644
--- a/base/deploy/src/engine/pkiconfig.py
+++ b/base/server/src/engine/pkiconfig.py
diff --git a/base/deploy/src/engine/pkihelper.py b/base/server/src/engine/pkihelper.py
index df71978ed..df71978ed 100644
--- a/base/deploy/src/engine/pkihelper.py
+++ b/base/server/src/engine/pkihelper.py
diff --git a/base/deploy/src/engine/pkilogging.py b/base/server/src/engine/pkilogging.py
index 319616145..319616145 100644
--- a/base/deploy/src/engine/pkilogging.py
+++ b/base/server/src/engine/pkilogging.py
diff --git a/base/deploy/src/engine/pkimanifest.py b/base/server/src/engine/pkimanifest.py
index 04a638f06..04a638f06 100644
--- a/base/deploy/src/engine/pkimanifest.py
+++ b/base/server/src/engine/pkimanifest.py
diff --git a/base/deploy/src/engine/pkimessages.py b/base/server/src/engine/pkimessages.py
index a6361dc8b..a6361dc8b 100644
--- a/base/deploy/src/engine/pkimessages.py
+++ b/base/server/src/engine/pkimessages.py
diff --git a/base/deploy/src/engine/pkiparser.py b/base/server/src/engine/pkiparser.py
index c4bf9b886..c4bf9b886 100644
--- a/base/deploy/src/engine/pkiparser.py
+++ b/base/server/src/engine/pkiparser.py
diff --git a/base/deploy/src/engine/pkiscriptlet.py b/base/server/src/engine/pkiscriptlet.py
index 767b3c609..767b3c609 100644
--- a/base/deploy/src/engine/pkiscriptlet.py
+++ b/base/server/src/engine/pkiscriptlet.py
diff --git a/base/deploy/src/pkidestroy b/base/server/src/pkidestroy
index 4e23445f1..4e23445f1 100755
--- a/base/deploy/src/pkidestroy
+++ b/base/server/src/pkidestroy
diff --git a/base/deploy/src/pkispawn b/base/server/src/pkispawn
index 447240ecf..447240ecf 100755
--- a/base/deploy/src/pkispawn
+++ b/base/server/src/pkispawn
diff --git a/base/deploy/src/scriptlets/configuration.py b/base/server/src/scriptlets/configuration.py
index 7bd1b017a..7bd1b017a 100644
--- a/base/deploy/src/scriptlets/configuration.py
+++ b/base/server/src/scriptlets/configuration.py
diff --git a/base/deploy/src/scriptlets/finalization.py b/base/server/src/scriptlets/finalization.py
index 6ddc98d03..6ddc98d03 100644
--- a/base/deploy/src/scriptlets/finalization.py
+++ b/base/server/src/scriptlets/finalization.py
diff --git a/base/deploy/src/scriptlets/infrastructure_layout.py b/base/server/src/scriptlets/infrastructure_layout.py
index 69a905849..69a905849 100644
--- a/base/deploy/src/scriptlets/infrastructure_layout.py
+++ b/base/server/src/scriptlets/infrastructure_layout.py
diff --git a/base/deploy/src/scriptlets/initialization.py b/base/server/src/scriptlets/initialization.py
index 3494ebdc7..3494ebdc7 100644
--- a/base/deploy/src/scriptlets/initialization.py
+++ b/base/server/src/scriptlets/initialization.py
diff --git a/base/deploy/src/scriptlets/instance_layout.py b/base/server/src/scriptlets/instance_layout.py
index 843227a84..843227a84 100644
--- a/base/deploy/src/scriptlets/instance_layout.py
+++ b/base/server/src/scriptlets/instance_layout.py
diff --git a/base/deploy/src/scriptlets/security_databases.py b/base/server/src/scriptlets/security_databases.py
index 9ac4784e5..9ac4784e5 100644
--- a/base/deploy/src/scriptlets/security_databases.py
+++ b/base/server/src/scriptlets/security_databases.py
diff --git a/base/deploy/src/scriptlets/selinux_setup.py b/base/server/src/scriptlets/selinux_setup.py
index 552ab3f41..552ab3f41 100644
--- a/base/deploy/src/scriptlets/selinux_setup.py
+++ b/base/server/src/scriptlets/selinux_setup.py
diff --git a/base/deploy/src/scriptlets/slot_substitution.py b/base/server/src/scriptlets/slot_substitution.py
index 205ed49f6..205ed49f6 100644
--- a/base/deploy/src/scriptlets/slot_substitution.py
+++ b/base/server/src/scriptlets/slot_substitution.py
diff --git a/base/deploy/src/scriptlets/subsystem_layout.py b/base/server/src/scriptlets/subsystem_layout.py
index c4c4c2283..c4c4c2283 100644
--- a/base/deploy/src/scriptlets/subsystem_layout.py
+++ b/base/server/src/scriptlets/subsystem_layout.py
diff --git a/base/deploy/src/scriptlets/webapp_deployment.py b/base/server/src/scriptlets/webapp_deployment.py
index e72752ee8..e72752ee8 100644
--- a/base/deploy/src/scriptlets/webapp_deployment.py
+++ b/base/server/src/scriptlets/webapp_deployment.py