b8d51d3c9a
Change-Id: I91f519f5ecbe1c5a252e87af28b66eef983478b0
14 lines
280 B
Bash
Executable File
14 lines
280 B
Bash
Executable File
#!/bin/sh
|
|
|
|
home=$(dirname $0)
|
|
set -uex
|
|
|
|
mkdir -p /opt/stack
|
|
cd /opt/stack
|
|
git clone https://github.com/tripleo/config-applier.git
|
|
cd config-applier
|
|
git checkout master
|
|
pip install -e . -U
|
|
|
|
install -m 0644 -o root -g root $home/config-applier.upstart /etc/init/config-applier.conf
|