Commit 24e48ad4 authored by Dietmar Maurer's avatar Dietmar Maurer

use shutdown instead of stop

parent 6ca81ce5
...@@ -371,7 +371,7 @@ Ext.define('PVE.OpenVZConsole', { ...@@ -371,7 +371,7 @@ Ext.define('PVE.OpenVZConsole', {
if (btn !== 'yes') { if (btn !== 'yes') {
return; return;
} }
vm_command("stop"); vm_command("shutdown");
}); });
} }
}, },
...@@ -383,7 +383,7 @@ Ext.define('PVE.OpenVZConsole', { ...@@ -383,7 +383,7 @@ Ext.define('PVE.OpenVZConsole', {
if (btn !== 'yes') { if (btn !== 'yes') {
return; return;
} }
vm_command("stop", { fast: 1 }); vm_command("stop");
}); });
} }
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment