tripleo-ci/scripts/bmc-template/bmc-template.sh
Emilien Macchi fb59994a73 Remove EPEL usage
Puppet OpenStack CI and RDO CI doesn't need EPEL, so this patch removes
EPEL dependency in TripleO CI.

Change-Id: I7adebb9ff6b544289bb138b5aa8736f0ded0da49
Depends-On: I91b070324eb39af351c2304e6786c395509d08dc
Depends-On: Iceff0d5bedd9816adfd2990970e7c216b67b6bd0
2016-09-12 18:20:58 +00:00

15 lines
568 B
Bash
Executable File

#!/bin/bash
# taken from openstack-virtual-baremetal/bin/install_openstackbmc.sh
yum -y update centos-release # required for rdo-release install to work
yum install -y https://rdo.fedorapeople.org/rdo-release.rpm
yum install -y python-pip python-crypto os-net-config python-novaclient python-neutronclient git jq
pip install pyghmi
# the CI cloud is using a unsafe disk caching mode, so this sync will be ignored by the host
# we're syncing data on the VM, then give the host 5 seconds to write it to disk and hope its long enough
sync
sleep 5
touch /var/tmp/ready