summaryrefslogtreecommitdiff
path: root/openstack/etc/systemd
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2015-03-20 14:29:32 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2015-04-07 10:08:32 +0000
commit21db6569ce9b47a153136a59f52c36b67d4b975d (patch)
treef87e5bc3e1c84b2aee7a64ab2e5396a0f1cd0137 /openstack/etc/systemd
parent5501cde55b8ab6ebbd1998bca226552f13cde730 (diff)
downloaddefinitions-21db6569ce9b47a153136a59f52c36b67d4b975d.tar.gz
Enable nova serial console
This enables serial console access to local nodes from the host machine by running `novaconsole $VM_NAME` after it has been installed by running pip install git+http://github.com/larsks/novaconsole.git
Diffstat (limited to 'openstack/etc/systemd')
-rw-r--r--openstack/etc/systemd/system/openstack-nova-serialproxy.service11
1 files changed, 11 insertions, 0 deletions
diff --git a/openstack/etc/systemd/system/openstack-nova-serialproxy.service b/openstack/etc/systemd/system/openstack-nova-serialproxy.service
new file mode 100644
index 00000000..2557dc2b
--- /dev/null
+++ b/openstack/etc/systemd/system/openstack-nova-serialproxy.service
@@ -0,0 +1,11 @@
+[Unit]
+Description=OpenStack Nova Serial Proxy
+After=syslog.target network.target
+
+[Service]
+Type=simple
+User=nova
+ExecStart=/usr/bin/nova-serialproxy --config-file /etc/nova/nova.conf
+
+[Install]
+WantedBy=multi-user.target