diff options
author | Michael Mokry <mm117s@att.com> | 2019-06-03 15:13:03 -0500 |
---|---|---|
committer | Michael Mokry <michael.mokry@att.com> | 2019-06-18 08:07:29 -0500 |
commit | a9bbc763a628ebf601825d080c107ede3894b726 (patch) | |
tree | 0f348edcf40fb27f993245f816e8a333a4f6f476 /packages/policy-xacmlpdp-tarball/src/main/package | |
parent | 2af8ab7ce69fba12631dd4bc51acb2cd892dc7c0 (diff) |
Create the operationshistory table from pdpx
Added create table sql statement to the policy-pdpx.sh to create the operationshistory table during
xacml-pdp installation
Added changes per Jorge's review
1) Added sql file with create table statement
2) Added bash script to execute sql file
3) modified policy-pdpx.sh to execute new bash script
4) other changes
Change-Id: Iaae63dc65db1ff9181de12928e072f04c87e50e7
Issue-ID: POLICY-1827
Signed-off-by: Michael Mokry <michael.mokry@att.com>
Diffstat (limited to 'packages/policy-xacmlpdp-tarball/src/main/package')
-rw-r--r-- | packages/policy-xacmlpdp-tarball/src/main/package/tarball/assembly.xml | 18 |
1 files changed, 18 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 3b027650..01df075f 100644 --- a/packages/policy-xacmlpdp-tarball/src/main/package/tarball/assembly.xml +++ b/packages/policy-xacmlpdp-tarball/src/main/package/tarball/assembly.xml @@ -60,6 +60,24 @@ <lineEnding>keep</lineEnding> </fileSet> <fileSet> + <directory>${project.basedir}/src/main/resources/mysql/bin + </directory> + <includes> + <include>*.sh</include> + </includes> + <outputDirectory>/mysql/bin</outputDirectory> + <lineEnding>unix</lineEnding> + </fileSet> + <fileSet> + <directory>${project.basedir}/src/main/resources/mysql/sql + </directory> + <includes> + <include>*.sql</include> + </includes> + <outputDirectory>/mysql/sql</outputDirectory> + <lineEnding>unix</lineEnding> + </fileSet> + <fileSet> <directory>${project.basedir}/src/main/resources/apps/guard </directory> <includes> |