summaryrefslogtreecommitdiffstats
path: root/scripts/compose_pki_core_packages
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2013-11-25 12:43:03 -0500
committerEndi S. Dewata <edewata@redhat.com>2013-12-06 03:18:23 -0500
commit8f6de6fd339c156ce3aad13ad5d45b635d194f79 (patch)
tree3d1b97403808f88a87b9e75aa6afc8e7280e8f8b /scripts/compose_pki_core_packages
parent3adfccf442916b1f91177097a1ad318d1a2e7838 (diff)
downloadpki-8f6de6fd339c156ce3aad13ad5d45b635d194f79.tar.gz
pki-8f6de6fd339c156ce3aad13ad5d45b635d194f79.tar.xz
pki-8f6de6fd339c156ce3aad13ad5d45b635d194f79.zip
Added option to build without server packages.
The build scripts have been modified to accept an optional parameter to build pki-core without the server packages.
Diffstat (limited to 'scripts/compose_pki_core_packages')
-rwxr-xr-xscripts/compose_pki_core_packages6
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/compose_pki_core_packages b/scripts/compose_pki_core_packages
index 23d58e0d0..67d85a599 100755
--- a/scripts/compose_pki_core_packages
+++ b/scripts/compose_pki_core_packages
@@ -38,12 +38,16 @@ PKI_CORE_VERSION="10.2.0"
##
PKI_SPECS_FILE="${PKI_DIR}/specs/${PKI_CORE}.spec"
-PKI_COMPONENT_LIST="test setup symkey util common native-tools java-tools server selinux ca kra ocsp tks tps-tomcat silent"
+PKI_COMPONENT_LIST="test symkey util common native-tools java-tools"
if [ "$WITHOUT_JAVADOC" = "" ]; then
PKI_COMPONENT_LIST="$PKI_COMPONENT_LIST javadoc"
fi
+if [ "$WITHOUT_SERVER" = "" ]; then
+ PKI_COMPONENT_LIST="$PKI_COMPONENT_LIST server ca kra ocsp tks tps-tomcat setup silent"
+fi
+
##
## Establish the TARGET files/directories of the 'pki-core' source/spec files
##