Add os-config-applier element.

Change-Id: Ie7ee15c26fbbcf93f2708bc63005cee5f75e8fc1
This commit is contained in:
Tim Miller 2013-01-30 10:57:12 -08:00
parent 24600defd0
commit 455bae12bd
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
#!/bin/bash
set -eux
TEMPLATES=git://github.com/tripleo/openstack-config-templates.git
sudo apt-get install --yes git python-pip
pip install -U git+https://github.com/tripleo/os-config-applier.git
mkdir -p /opt/stack
git clone $TEMPLATES /opt/stack/openstack-config-templates
cat > /etc/init/os-config-applier.conf <<- eof
start on runlevel [2345]
task
exec os-config-applier -t /opt/stack/openstack-config-templates/templates
eof