summaryrefslogtreecommitdiffstats
path: root/packages/policy-distribution-tarball/src/main/package/tarball/assembly.xml
diff options
context:
space:
mode:
authorliboNet <libo.zhu@intel.com>2018-12-20 06:57:56 +0800
committerPamela Dragosh <pdragosh@research.att.com>2019-01-10 09:50:50 +0000
commit4108a0b918749ee6d13e8476552ee471c92a0a6d (patch)
treec827f47b4b1c207c415d86e4a33c7dec3c975017 /packages/policy-distribution-tarball/src/main/package/tarball/assembly.xml
parent2511b36968b84151c67d7227c043bf90855ce161 (diff)
Fix lineEnding issue for policy-keystore
. separate the etc/ssl from etc in assembly . fix the JVM property typo by using trustStorePassword Change-Id: I0e00bf211de96939346c46e0486361e29f9e20f7 Issue-ID: POLICY-1385 Signed-off-by: liboNet <libo.zhu@intel.com> (cherry picked from commit 5654548387d1ba2c3776d1a01276103481ac41cd)
Diffstat (limited to 'packages/policy-distribution-tarball/src/main/package/tarball/assembly.xml')
-rw-r--r--packages/policy-distribution-tarball/src/main/package/tarball/assembly.xml12
1 files changed, 11 insertions, 1 deletions
diff --git a/packages/policy-distribution-tarball/src/main/package/tarball/assembly.xml b/packages/policy-distribution-tarball/src/main/package/tarball/assembly.xml
index ad976c7e..351fe7e3 100644
--- a/packages/policy-distribution-tarball/src/main/package/tarball/assembly.xml
+++ b/packages/policy-distribution-tarball/src/main/package/tarball/assembly.xml
@@ -48,7 +48,8 @@
<directory>${project.basedir}/src/main/resources/etc
</directory>
<includes>
- <include>**/*</include>
+ <include>*.json</include>
+ <include>*.xml</include>
</includes>
<outputDirectory>/etc</outputDirectory>
<lineEnding>unix</lineEnding>
@@ -56,5 +57,14 @@
<exclude>*.formatted</exclude>
</excludes>
</fileSet>
+ <fileSet>
+ <directory>${project.basedir}/src/main/resources/etc/ssl
+ </directory>
+ <includes>
+ <include>policy*</include>
+ </includes>
+ <outputDirectory>/etc/ssl</outputDirectory>
+ <lineEnding>keep</lineEnding>
+ </fileSet>
</fileSets>
</assembly>