aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap/vagrant-onap/lib/mr
diff options
context:
space:
mode:
authorVictor Morales <victor.morales@intel.com>2017-06-16 18:32:48 -0500
committerVictor Morales <victor.morales@intel.com>2017-06-20 21:13:28 -0500
commit89ce3216514b002b725777d132df144b3838e42d (patch)
treefd1dcc35972c448a576265a7eb6381d8b89e115c /bootstrap/vagrant-onap/lib/mr
parentf5cd892f130bd6a8d0cdf44d705b966c3cee3499 (diff)
Add vagrant-onap project
This commit contains the current state of the files and folders imported from github repository[1]. Fixes and features are expected to be implemented in this project. [1] https://github.com/electrocucaracha/vagrant-onap Change-Id: Ib1e8d264e9566c5e44454f5475b5da4638879cb7 Signed-off-by: Victor Morales <victor.morales@intel.com> Issue-id: CIMAN-28
Diffstat (limited to 'bootstrap/vagrant-onap/lib/mr')
-rwxr-xr-xbootstrap/vagrant-onap/lib/mr18
1 files changed, 18 insertions, 0 deletions
diff --git a/bootstrap/vagrant-onap/lib/mr b/bootstrap/vagrant-onap/lib/mr
new file mode 100755
index 000000000..8b92bc9c8
--- /dev/null
+++ b/bootstrap/vagrant-onap/lib/mr
@@ -0,0 +1,18 @@
+#!/bin/bash
+
+set -o xtrace
+
+# install_message_router() - Downloads and configure message router source code
+function install_message_router {
+ local src_folder=/opt/dcae/message-router
+ clone_repo dcae/demo/startup/message-router $src_folder
+ pushd $src_folder
+ is_package_installed docker-ce || install_docker
+ bash deploy.sh
+ popd
+}
+
+# init_mr() - Function that initialize Message Router services
+function init_mr {
+ install_message_router
+}