From 711a58c91aae95f3312f502b11ca2a65f93d495e Mon Sep 17 00:00:00 2001 From: Jan Klare Date: Mon, 23 Feb 2015 15:08:00 +0100 Subject: [PATCH] added bootstrap script for testing current bootstrap script relies on the common bootstrap script in stackforge/cookbook-openstack-common to install all the needed dependencies Change-Id: Id418290cbc3758f0b55264ce351d21cc31de1160 blueprint: bootstrap-infra-test-nodes --- bootstrap.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 bootstrap.sh diff --git a/bootstrap.sh b/bootstrap.sh new file mode 100755 index 00000000..f38a9602 --- /dev/null +++ b/bootstrap.sh @@ -0,0 +1,9 @@ +#!/bin/bash -x +## This script is for installing all the needed packages on trusty to run the chef tests with 'chef exec rake'. +## It relies on the common bootstrap.sh from stackforge/cookbook-openstack-common for installing common dependencies. + +curl https://raw.githubusercontent.com/stackforge/cookbook-openstack-common/master/bootstrap.sh \ + --retry 3 \ + --silent \ + --show-error \ + | /bin/bash -x