installation: update scripts to actually install 59/35059/2
authorMaryam Tahhan <maryam.tahhan@intel.com>
Fri, 19 May 2017 13:55:09 +0000 (14:55 +0100)
committerMaryam Tahhan <maryam.tahhan@intel.com>
Tue, 23 May 2017 08:20:04 +0000 (08:20 +0000)
Update the scripts to actually install collectd.

Change-Id: I467e4fddbdd7c7b067586ddf24af8c5ec32b72a2
Signed-off-by: Maryam Tahhan <maryam.tahhan@intel.com>
docs/release/userguide/feature.userguide.rst
systems/build_base_machine.sh

index fcaf37b..ed4729e 100644 (file)
@@ -110,7 +110,7 @@ To install collectd as a service and install all it's dependencies:
 
 .. code:: bash
 
-    $ cd barometer && ./systems/build_base_machine.sh
+    $ cd barometer/systems && ./build_base_machine.sh
 
 This will install collectd as a service and the base install directory
 will be /opt/collectd.
index 7b877f5..70a0d17 100755 (executable)
@@ -68,7 +68,9 @@ fi
 # download and compile DPDK and Collectd
 if [ -f ../src/Makefile ] ; then
     cd ../src
+    make clobber || die "Make clobber failed"
     make || die "Make failed"
+    make intsall || die "Make install failed"
     cd -
 else
     die "Make failed; No Makefile"