c8e5a3d8b3
Added a bootstrap script for installing all the packages needed to run the chef tests with 'chef exec rake' on a ubuntu trusty. The current script is a first try of implementing the blueprint mentioned below. Change-Id: Ia5b9b800525ff7fd79a1f09ffecd1a91b264ccf7 blueprint: bootstrap-infra-test-nodes
11 lines
379 B
Bash
Executable File
11 lines
379 B
Bash
Executable File
#!/bin/bash -x
|
|
## This script is for installing all the needed packages on trusty to run the chef tests with 'chef exec rake'
|
|
|
|
# install needed packages
|
|
sudo apt-get -y install build-essential liblzma-dev zlib1g-dev
|
|
|
|
# install chefdk
|
|
chefdk=chefdk_0.4.0-1_amd64.deb
|
|
wget -nv -t 3 https://opscode-omnibus-packages.s3.amazonaws.com/ubuntu/12.04/x86_64/$chefdk
|
|
sudo dpkg -i $chefdk
|