2013-02-07 03:05:47 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# We need to install this early in install.d because other elements will
|
|
|
|
# need to use os-refresh-config --print-base to know where to put files
|
|
|
|
|
|
|
|
set -eux
|
|
|
|
|
|
|
|
install-packages git-core python-pip
|
|
|
|
|
|
|
|
pip install git+https://github.com/tripleo/os-refresh-config.git
|
|
|
|
|
2013-02-21 05:50:33 +00:00
|
|
|
for d in pre-configure.d configure.d migration.d post-configure.d; do
|
|
|
|
install -m 0755 -o root -g root -d /opt/stack/os-config-refresh/$d
|
|
|
|
done
|
|
|
|
|
2013-02-07 03:05:47 +00:00
|
|
|
cat > /etc/init/os-refresh-config.conf <<- eof
|
|
|
|
start on runlevel [2345]
|
|
|
|
task
|
|
|
|
exec os-refresh-config
|
|
|
|
eof
|