[pve-devel] [PATCH manager 3/3] add more verbose warning for node shutdown/reboot

Thomas Lamprecht t.lamprecht at proxmox.com
Fri May 12 12:14:21 CEST 2017


Signed-off-by: Thomas Lamprecht <t.lamprecht at proxmox.com>
---

I'm open for better warning message suggestions :-)

 www/manager6/node/Config.js | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/www/manager6/node/Config.js b/www/manager6/node/Config.js
index be3393bb..e1f2a69f 100644
--- a/www/manager6/node/Config.js
+++ b/www/manager6/node/Config.js
@@ -84,7 +84,8 @@ Ext.define('PVE.node.Config', {
 	    text: gettext('Restart'),
 	    disabled: !caps.nodes['Sys.PowerMgmt'],
 	    dangerous: true,
-	    confirmMsg: gettext('Node') + " '" + nodename + "' - " + gettext('Restart'),
+	    confirmMsg: gettext('Node') + " '" + nodename + "' - " + gettext('Restart')
+		+ '<br /><br />' + gettext('Powers off all VMs and CTs!'),
 	    handler: function() {
 		node_command('reboot');
 	    },
@@ -95,7 +96,8 @@ Ext.define('PVE.node.Config', {
 	    text: gettext('Shutdown'),
 	    disabled: !caps.nodes['Sys.PowerMgmt'],
 	    dangerous: true,
-	    confirmMsg: gettext('Node') + " '" + nodename + "' - " + gettext('Shutdown'),
+	    confirmMsg: gettext('Node') + " '" + nodename + "' - " + gettext('Shutdown')
+		+ '<br /><br />' + gettext('Powers off all VMs and CTs!'),
 	    handler: function() {
 		node_command('shutdown');
 	    },
-- 
2.11.0





More information about the pve-devel mailing list