From bd49ecb4356485c6b7ad54b896246274ae6d8d18 Mon Sep 17 00:00:00 2001 From: Matthias Heiserer Date: Thu, 30 Jun 2022 12:12:03 +0200 Subject: [PATCH] Qemu-Server: fix wrong quotation Before, the two strings were one single string each, rather than multiple separated by newlines. In the docs, this looked very strange as there were linebreaks and the dots were shown. Can be seen e.g. in api-viewer /nodes/{node}/qemu/{vmid}/config. Signed-off-by: Matthias Heiserer Signed-off-by: Wolfgang Bumiller --- PVE/QemuServer.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm index 09c0df4f..7d9cf220 100644 --- a/PVE/QemuServer.pm +++ b/PVE/QemuServer.pm @@ -783,16 +783,16 @@ my $confdesc_cloudinit = { searchdomain => { optional => 1, type => 'string', - description => "cloud-init: Sets DNS search domains for a container. Create will' + description => 'cloud-init: Sets DNS search domains for a container. Create will' .' automatically use the setting from the host if neither searchdomain nor nameserver' - .' are set.", + .' are set.', }, nameserver => { optional => 1, type => 'string', format => 'address-list', - description => "cloud-init: Sets DNS server IP address for a container. Create will' + description => 'cloud-init: Sets DNS server IP address for a container. Create will' .' automatically use the setting from the host if neither searchdomain nor nameserver' - .' are set.", + .' are set.', }, sshkeys => { optional => 1,