Fix issues causing Fedora images to fail

For os-refresh-config and os-config-applier, support systemd or upstart.

Change-Id: I4ff12e891a85b3171a6ef0c6898b2d45a1699de1
This commit is contained in:
Clint Byrum 2013-03-07 14:17:41 -08:00
parent 6cfd9681b7
commit 597575c681
2 changed files with 38 additions and 2 deletions

View File

@ -7,8 +7,26 @@ pip install -U git+https://github.com/tripleo/os-config-applier.git
TEMPLATE_ROOT=$(os-config-applier --print-templates)
mkdir -p $TEMPLATE_ROOT
cat > /etc/init/os-config-applier.conf <<- eof
# Upstart
if [ -d /etc/init ] ; then
cat > /etc/init/os-config-applier.conf <<eof
start on runlevel [2345]
task
exec os-config-applier
eof
# Systemd
elif [ -d /etc/systemd/system ] ; then
cat > /etc/systemd/system/os-config-applier.service <<eof
[Unit]
Description=Apply configs from Heat metadata
[Service]
ExecStart=os-config-applier
[Install]
WantedBy=multi-user.target
eof
else
echo "Only systems with systemd or upstart are supported."
exit 1
fi

View File

@ -12,8 +12,26 @@ 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
cat > /etc/init/os-refresh-config.conf <<- eof
# 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