tripleo-image-elements/elements/os-apply-config/install.d/10-os-config-applier

20 lines
728 B
Bash
Executable File

#!/bin/bash
set -eux
install-packages python-virtualenv
virtualenv --setuptools /opt/stack/venvs/os-apply-config
# bug #1201253 : virtualenv-1.10.1 embeds setuptools-0.9.8, which
# doesn't manage correctly HTTPS sockets when downloading pbr from
# https://pypi.python.org/simple/ if using http_proxy and https_proxy
# envvars
/opt/stack/venvs/os-apply-config/bin/pip install -U 'setuptools>=1.0'
/opt/stack/venvs/os-apply-config/bin/pip install -U os-apply-config
ln -s /opt/stack/venvs/os-apply-config/bin/os-apply-config /usr/local/bin/os-apply-config
ln -s /opt/stack/venvs/os-apply-config/bin/os-config-applier /usr/local/bin/os-config-applier
TEMPLATE_ROOT=$(os-apply-config --print-templates)
mkdir -p $TEMPLATE_ROOT