diff options
author | Taras Chornyi <tarasx.chornyi@intel.com> | 2017-08-21 17:09:17 +0300 |
---|---|---|
committer | Taras Chornyi <tarasx.chornyi@intel.com> | 2017-11-17 14:16:20 +0000 |
commit | 810dac49e96193b447d231d25d6522eef2e62d02 (patch) | |
tree | 152d3f81194865e033ee6f114c8177c8b7aa806a /systems/build_base_machine.sh | |
parent | ecf1ba1c5000718d1f0d90270af33039b488c835 (diff) |
docker: Added docker container for running collectd
Added InfluxDB and Grafana containers.
Change-Id: Ifa46fac03c0175267d9cbffed5354193ad182733
Signed-off-by: Taras Chornyi <tarasx.chornyi@intel.com>
Diffstat (limited to 'systems/build_base_machine.sh')
-rwxr-xr-x | systems/build_base_machine.sh | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/systems/build_base_machine.sh b/systems/build_base_machine.sh index cec82ebb..e0c8370d 100755 --- a/systems/build_base_machine.sh +++ b/systems/build_base_machine.sh @@ -3,7 +3,7 @@ # Top level scripts to build basic setup for the host # -# Copyright 2015-2016 OPNFV, Intel Corporation. +# Copyright 2015-2017 OPNFV, Intel Corporation. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -23,6 +23,7 @@ # Abdul Halim, Intel Corporation. # Martin Klozik, Intel Corporation. # Maryam Tahhan, Intel Corporation. +# Taras Chornyi, Intel Corporation. ROOT_UID=0 SUDO="" @@ -60,16 +61,20 @@ if [ -d "$distro_dir" ] && [ -e "$distro_dir/build_base_machine.sh" ]; then else die "$distro_dir is not yet supported" fi - -if [ ! -d /lib/modules/`uname -r`/build ] ; then - die "Kernel devel is not available for active kernel. It can be caused by recent kernel update. Please reboot and run $0 again." +if [ -z ${DOCKER+x} ]; then + if [ ! -d /lib/modules/`uname -r`/build ] ; then + die "Kernel devel is not available for active kernel. It can be caused by recent kernel update. Please reboot and run $0 again." + fi fi - # download and compile DPDK and Collectd if [ -f ../src/Makefile ] ; then cd ../src make clobber || die "Make clobber failed" - make install || die "Make install failed" +if [ -z ${DOCKER+x} ]; then + make DOCKER=y install || die "Make install failed"; +else + make install || die "Make install failed"; +fi cd - else die "Make failed; No Makefile" |