summaryrefslogtreecommitdiffstats
path: root/vagrant/basebuild/bootstrap.sh
diff options
context:
space:
mode:
authorChris Luke <chrisy@flirble.org>2016-05-13 19:21:04 -0400
committerC.J. Collier <cjcollier@linuxfoundation.org>2016-05-16 19:39:38 +0000
commitbb64baaa92b5f8111cb50d150fcdbad1d8a238db (patch)
tree08df5733d7f2eb120ae672c583109d31aa934a5c /vagrant/basebuild/bootstrap.sh
parent9b3866ff77f39397027517b874df380e0e43af63 (diff)
Add build dependencies for documentation
Add doxygen and graphviz to the dependency list. Change-Id: I546b41a7613d8492f4054b3674905f05c504fad3 Signed-off-by: Chris Luke <chrisy@flirble.org> Signed-off-by: C.J. Collier <cjcollier@linuxfoundation.org>
Diffstat (limited to 'vagrant/basebuild/bootstrap.sh')
-rw-r--r--vagrant/basebuild/bootstrap.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/vagrant/basebuild/bootstrap.sh b/vagrant/basebuild/bootstrap.sh
index a0bcfb962..c8cc87492 100644
--- a/vagrant/basebuild/bootstrap.sh
+++ b/vagrant/basebuild/bootstrap.sh
@@ -6,6 +6,8 @@ set -e
# pull in bootstrap functions
. /vagrant/lib/bootstrap-functions.sh
+do_setup
+
echo "---> Attempting to detect OS"
# OS selector
if [ -f /usr/bin/yum ]
@@ -43,6 +45,8 @@ then
fi
+do_cleanup
+
echo "bootstrap process (PID=$$) complete."
exit 0