Fix typo with tripleo-cd systemd unit

This apparently isn't used yet, so we haven't hit  this pretty obvious
typo.

Thanks to Derek for also pointing the incorrect ExecStart path.

Change-Id: Ic4735d52f22377a7a0bdec956cb2d235b714dfde
This commit is contained in:
Mark McLoughlin 2013-11-27 09:49:56 +00:00
parent a8372eac32
commit 7ba86e5fd4
1 changed files with 2 additions and 2 deletions

View File

@ -10,14 +10,14 @@ exec tripleo-cd.sh
eof
elif [ "$DIB_INIT_SYSTEM" == "systemd" ] ; then
cat > /lib/systemd/system/os-collect-config.service <<eof
cat > /lib/systemd/system/tripleo-cd.service <<eof
[Unit]
Description=Deploy an overcloud forever.
After=cloud-final.service
Before=crond.service
[Service]
ExecStart=/bin/tripleo-cd.sh
ExecStart=/usr/local/bin/tripleo-cd.sh
Restart=on-failure
[Install]