201263ff2f
- Fix location of delorean master repo for os clients install - Install epel for puppet installation - Fix proxy server puppet module location Change-Id: Iad8d5cca4a0a823f41fc77cbd222643959efbfa5
15 lines
544 B
Bash
Executable File
15 lines
544 B
Bash
Executable File
#!/bin/bash
|
|
|
|
curl -L https://trunk.rdoproject.org/centos7-master/current-tripleo/delorean.repo > /etc/yum.repos.d/delorean.repo
|
|
curl -L https://trunk.rdoproject.org/centos7/delorean-deps.repo > /etc/yum.repos.d/delorean-deps.repo
|
|
|
|
yum install -y python-pip python-heatclient python-neutronclient python-novaclient python-swiftclient python-openstackclient
|
|
|
|
pip install gear
|
|
|
|
BASEPATH=$(realpath $(dirname $0))
|
|
|
|
cp $BASEPATH/geard.service /lib/systemd/system/geard.service
|
|
cp $BASEPATH/te_workers.service /lib/systemd/system/te_workers.service
|
|
|