summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2015-03-20 14:34:20 +0000
committerPedro Alvarez <pedro.alvarez@codethink.co.uk>2015-04-10 10:55:32 +0000
commit7f3d161716a51e0e6bfdb7e63f9a2bbee9b3da48 (patch)
tree4ecbe5775ebb7b0d89f0f8313a66556f347ecc3b
parent300a18bee45e0ade3d7dd32fda5ed48d924d10b3 (diff)
downloaddefinitions-7f3d161716a51e0e6bfdb7e63f9a2bbee9b3da48.tar.gz
Tidy up some nova service enablement
-rw-r--r--openstack/usr/share/openstack/openstack-nova-setup29
1 files changed, 6 insertions, 23 deletions
diff --git a/openstack/usr/share/openstack/openstack-nova-setup b/openstack/usr/share/openstack/openstack-nova-setup
index 1a93a1b0..2fdd3608 100644
--- a/openstack/usr/share/openstack/openstack-nova-setup
+++ b/openstack/usr/share/openstack/openstack-nova-setup
@@ -95,38 +95,21 @@ usermod -a -G libvirt nova
rm /etc/systemd/system/multi-user.target.wants/openstack-nova-setup.service
# Start nova services
-systemctl start openstack-nova-compute
# [1] Never enable openstack-nova-conductor service in a node with
# openstack-nova-compute or the security benefits of removing
# database access from nova-compute will be negated
#systemctl start openstack-nova-conductor
-systemctl start openstack-nova-api
-systemctl start openstack-nova-cert
-systemctl start openstack-nova-consoleauth
-systemctl start openstack-nova-scheduler
-systemctl start openstack-nova-novncproxy
+for service in compute api cert consoleauth scheduler novncproxy; do
+ systemctl start openstack-nova-$service.service
+done
#systemctl start openstack-nova-xvpnvncproxy
# Create the links to run nova services when system start next times.
-ln -s "/etc/systemd/system/openstack-nova-compute.service" \
- "/etc/systemd/system/multi-user.target.wants/openstack-nova-compute.service"
+for service in compute api cert consoleauth scheduler novncproxy; do
+ systemctl enable openstack-nova-$service.service
+done
# See description of why this shouldn't run in a openstack in one node in [1]
#ln -s "/etc/systemd/system/openstack-nova-conductor.service" \
# "/etc/systemd/system/multi-user.target.wants/openstack-nova-conductor.service"
-ln -s "/etc/systemd/system/openstack-nova-api.service" \
- "/etc/systemd/system/multi-user.target.wants/openstack-nova-api.service"
-
-ln -s "/etc/systemd/system/openstack-nova-cert.service" \
- "/etc/systemd/system/multi-user.target.wants/openstack-nova-cert.service"
-
-ln -s "/etc/systemd/system/openstack-nova-consoleauth.service" \
- "/etc/systemd/system/multi-user.target.wants/openstack-nova-consoleauth.service"
-
-ln -s "/etc/systemd/system/openstack-nova-scheduler.service" \
- "/etc/systemd/system/multi-user.target.wants/openstack-nova-scheduler.service"
-
-ln -s "/etc/systemd/system/openstack-nova-novncproxy.service" \
- "/etc/systemd/system/multi-user.target.wants/openstack-nova-novncproxy.service"
-
exit 0