[pve-devel] [PATCH qemu-server 1/4] api: fix spacing and punctuation in shutdown and stop descriptions
Friedrich Weber
f.weber at proxmox.com
Thu Apr 18 15:46:34 CEST 2024
Add missing spaces and full-stops and wrap strings according to Perl
style guide.
Signed-off-by: Friedrich Weber <f.weber at proxmox.com>
---
PVE/API2/Qemu.pm | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/PVE/API2/Qemu.pm b/PVE/API2/Qemu.pm
index 6c9e883..00cd907 100644
--- a/PVE/API2/Qemu.pm
+++ b/PVE/API2/Qemu.pm
@@ -3017,8 +3017,8 @@ __PACKAGE__->register_method({
method => 'POST',
protected => 1,
proxyto => 'node',
- description => "Stop virtual machine. The qemu process will exit immediately. This" .
- "is akin to pulling the power plug of a running computer and may damage the VM data",
+ description => "Stop virtual machine. The qemu process will exit immediately. This"
+ ." is akin to pulling the power plug of a running computer and may damage the VM data.",
permissions => {
check => ['perm', '/vms/{vmid}', [ 'VM.PowerMgmt' ]],
},
@@ -3173,8 +3173,9 @@ __PACKAGE__->register_method({
method => 'POST',
protected => 1,
proxyto => 'node',
- description => "Shutdown virtual machine. This is similar to pressing the power button on a physical machine." .
- "This will send an ACPI event for the guest OS, which should then proceed to a clean shutdown.",
+ description => "Shutdown virtual machine. This is similar to pressing the power button on a"
+ ." physical machine. This will send an ACPI event for the guest OS, which should then"
+ ." proceed to a clean shutdown.",
permissions => {
check => ['perm', '/vms/{vmid}', [ 'VM.PowerMgmt' ]],
},
--
2.39.2
More information about the pve-devel
mailing list