597575c681
For os-refresh-config and os-config-applier, support systemd or upstart. Change-Id: I4ff12e891a85b3171a6ef0c6898b2d45a1699de1
38 lines
882 B
Bash
Executable File
38 lines
882 B
Bash
Executable File
#!/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
|
|
|
|
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
|
|
|
|
# Upstart
|
|
if [ -d /etc/init ] ; then
|
|
cat > /etc/init/os-refresh-config.conf <<eof
|
|
start on runlevel [2345]
|
|
task
|
|
exec os-refresh-config
|
|
eof
|
|
# Systemd
|
|
elif [ -d /etc/systemd/system ] ; then
|
|
cat > /etc/systemd/system/os-refresh-config.service <<eof
|
|
[Unit]
|
|
Description=Refresh Config on state change
|
|
|
|
[Service]
|
|
ExecStart=os-refresh-config
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
eof
|
|
else
|
|
echo Only systems with systemd or upstart are supported.
|
|
exit 1
|
|
fi
|