]> git.proxmox.com Git - pve-container.git/commitdiff
Document the difference between stop and shutdown
authorEmmanuel Kasper <e.kasper@proxmox.com>
Thu, 3 Mar 2016 12:52:52 +0000 (13:52 +0100)
committerDietmar Maurer <dietmar@proxmox.com>
Fri, 4 Mar 2016 05:16:45 +0000 (06:16 +0100)
src/PVE/API2/LXC/Status.pm

index c5fca2952596481f164d7dd53b816b567dc8ffc7..01dfe12ab00a091f5c01cec4d3decdbf20d60de4 100644 (file)
@@ -198,7 +198,7 @@ __PACKAGE__->register_method({
     method => 'POST',
     protected => 1,
     proxyto => 'node',
-    description => "Stop the container.",
+    description => "Stop the container. This will abruptly stop all processes running in the container.",
     permissions => {
        check => ['perm', '/vms/{vmid}', [ 'VM.PowerMgmt' ]],
     },
@@ -282,7 +282,8 @@ __PACKAGE__->register_method({
     method => 'POST',
     protected => 1,
     proxyto => 'node',
-    description => "Shutdown the container.",
+    description => "Shutdown the container. This will trigger a clean shutdown " .
+       "of the container, see lxc-stop(1) for details.",
     permissions => {
        check => ['perm', '/vms/{vmid}', [ 'VM.PowerMgmt' ]],
     },