Merge "Add os-config-applier element."

This commit is contained in:
Jenkins 2013-02-05 06:54:53 +00:00 committed by Gerrit Code Review
commit 988bebcefb
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