diff options
author | Michael Mokry <michael.mokry@att.com> | 2019-04-11 12:19:50 -0500 |
---|---|---|
committer | Michael Mokry <michael.mokry@att.com> | 2019-04-11 17:15:07 -0500 |
commit | 432cec9fa6f143dad324cd11f62fb052c7da32b7 (patch) | |
tree | 3d7d5bb4f1e7ada0e8ca3255e03149800a1b4b00 /packages/policy-xacmlpdp-tarball/src/main/package/tarball/assembly.xml | |
parent | 4013653daa38a7fe1b9ffcae02e27d0bc411ac8f (diff) |
Changes to handle PDPX deploy/undeploy
Added changes to handle incoming udpate for deploying or undeploying the
policies by comparing both sets. STill need to add support for removing
the policies and getting the deployed ToscaPolicyIdentifiers for
PdpStatus response.
* PLD - added functionality to unload policies in the applications and
* PLD - added map of loaded policies
* Mike - made change to address Jim's and Joshua's comments
* Mike - Made change to use mapLoadedPolicies to get deployed policies
from the applications
* Mike - made change to assembly.xml to add support for apps directory.
Change-Id: If7d119197171b68b905b7fd0f2b5be6cf6f609e7
Issue-ID: POLICY-1451
Signed-off-by: Michael Mokry <michael.mokry@att.com>
Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
Diffstat (limited to 'packages/policy-xacmlpdp-tarball/src/main/package/tarball/assembly.xml')
-rw-r--r-- | packages/policy-xacmlpdp-tarball/src/main/package/tarball/assembly.xml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/packages/policy-xacmlpdp-tarball/src/main/package/tarball/assembly.xml b/packages/policy-xacmlpdp-tarball/src/main/package/tarball/assembly.xml index e08be24d..768709f7 100644 --- a/packages/policy-xacmlpdp-tarball/src/main/package/tarball/assembly.xml +++ b/packages/policy-xacmlpdp-tarball/src/main/package/tarball/assembly.xml @@ -58,5 +58,32 @@ <outputDirectory>/etc/ssl</outputDirectory> <lineEnding>keep</lineEnding> </fileSet> + <fileSet> + <directory>${project.basedir}/src/main/resources/apps/guard + </directory> + <includes> + <include>*.properties</include> + </includes> + <outputDirectory>/apps/guard</outputDirectory> + <lineEnding>unix</lineEnding> + </fileSet> + <fileSet> + <directory>${project.basedir}/src/main/resources/apps/monitoring + </directory> + <includes> + <include>*.properties</include> + </includes> + <outputDirectory>/apps/monitoring</outputDirectory> + <lineEnding>unix</lineEnding> + </fileSet> + <fileSet> + <directory>${project.basedir}/src/main/resources/apps/optimization + </directory> + <includes> + <include>*.properties</include> + </includes> + <outputDirectory>/apps/optimization</outputDirectory> + <lineEnding>unix</lineEnding> + </fileSet> </fileSets> </assembly> |