From 2ffeb480106d420baf928d9e8bd81267f4c63534 Mon Sep 17 00:00:00 2001 From: Taylor Peoples Date: Thu, 14 Jan 2016 07:50:16 +0100 Subject: [PATCH] Remove incorrect spaces for libvirt_opts value The documentation for the DevStack plugin suggests changing the libvirt_opts value of /etc/default/libvirt-bin to allow for live migration between compute nodes. This changeset removes the incorrect spaces surrounding the equals sign in the file, which would cause the libvirt-bin service to crash. Change-Id: Id073da5cdc84a900a398f260d7f7b40f027eb9d3 Closes-Bug: #1533761 --- doc/source/dev/devstack-plugin.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/dev/devstack-plugin.rst b/doc/source/dev/devstack-plugin.rst index 90af9f69b..aa8276efe 100644 --- a/doc/source/dev/devstack-plugin.rst +++ b/doc/source/dev/devstack-plugin.rst @@ -92,7 +92,7 @@ Edit `/etc/libvirt/libvirtd.conf` to make sure the following values are set:: Edit `/etc/default/libvirt-bin`:: - libvirt_opts = " -d -l" + libvirt_opts="-d -l" Restart the libvirt service::