use shutdown instead of stop

This commit is contained in:
Dietmar Maurer 2012-03-12 11:17:33 +01:00
parent 503bea5d86
commit a44bd84f38

View File

@ -371,7 +371,7 @@ Ext.define('PVE.OpenVZConsole', {
if (btn !== 'yes') {
return;
}
vm_command("stop");
vm_command("shutdown");
});
}
},
@ -383,7 +383,7 @@ Ext.define('PVE.OpenVZConsole', {
if (btn !== 'yes') {
return;
}
vm_command("stop", { fast: 1 });
vm_command("stop");
});
}
},