diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2017-02-14 19:57:17 -0500 |
---|---|---|
committer | Pamela Dragosh <pdragosh@research.att.com> | 2017-02-14 19:57:34 -0500 |
commit | d1728dcd6de36778e6ec0bb99ea9e37ac2f56645 (patch) | |
tree | 8c3df0cbb52b7d90131101f20841d9e3b5b87ba4 /policy-drools/do-start.sh | |
parent | 35607b20f059053e77a2a9355b26a8dd9a7b9c31 (diff) |
Initial OpenECOMP policy/docker commit
Change-Id: Ib37c3693614ee21a78f838e63eb40319cc85bdc6
Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
Diffstat (limited to 'policy-drools/do-start.sh')
-rw-r--r-- | policy-drools/do-start.sh | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/policy-drools/do-start.sh b/policy-drools/do-start.sh new file mode 100644 index 00000000..0d57d834 --- /dev/null +++ b/policy-drools/do-start.sh @@ -0,0 +1,49 @@ +#!/bin/bash + +# skip installation if build.info file is present (restarting an existing container) +if [[ -f /opt/app/policy/etc/build.info ]]; then + echo "Found existing installation, will not reinstall" + . /opt/app/policy/etc/profile.d/env.sh +else + # replace conf files from installer with environment-specific files + # mounted from the hosting VM + if [[ -d config ]]; then + cp config/*.conf . + fi + + # wait for nexus up before installing, since installation + # needs to deploy some artifacts to the repo + ./wait-for-port.sh nexus 8081 + + ./docker-install.sh + + . /opt/app/policy/etc/profile.d/env.sh + + # install policy keystore + mkdir -p $POLICY_HOME/etc/ssl + cp config/policy-keystore $POLICY_HOME/etc/ssl + + # this should probably be done by install.sh + mvn install:install-file archetype:crawl -Dfile="archetype-closedloop-demo-rules-1.0.0-SNAPSHOT.jar" -DgroupId=org.openecomp.policy.archetype -DartifactId=archetype-closedloop-demo-rules -Dversion="1.0.0-SNAPSHOT" -Dpackaging=jar -DgeneratePom=true -DupdateReleaseInfo=true + + if [[ -x config/drools-tweaks.sh ]] ; then + echo "Executing tweaks" + # file may not be executable; running it as an + # argument to bash avoids needing execute perms. + bash config/drools-tweaks.sh + fi + + # wait for DB up + ./wait-for-port.sh mariadb 3306 + # now that DB is up, invoke database upgrade + # (which does nothing if the db is already up-to-date) + dbuser=$(echo $(grep '^JDBC_USER=' base.conf | cut -f2 -d=)) + dbpw=$(echo $(grep '^JDBC_PASSWORD=' base.conf | cut -f2 -d=)) + db_upgrade_droolspdp_remote.sh $dbuser $dbpw mariadb +fi + +echo "Starting processes" + +policy.sh start + +sleep 1000d |