drydock/hostdeps.sh
Scott Hussey dbad75775b Libvirt OOB driver
- Create a driver to support OOB actions via libvirt API
- Update Makefile with external dependency target
- Update Makefile and tooling to support new chart pipeline
   - Add 'drydock' make target for chart building
   - Add step to install helm binary

Change-Id: I8a3984d8fd70f99a82a954b7a869eab8e30145b4
2018-05-25 11:13:53 -05:00

10 lines
273 B
Bash
Executable File

#!/bin/bash
# Install host-level package dependencies
# needed for local testing
if [[ ! -z $(uname -a | grep Ubuntu) ]]
then
apt install -y --no-install-recommends $(grep -v '^#' requirements-host.txt)
else
echo "Only support testing on Ubuntu hosts at this time."
fi