1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-23 22:50:09 +03:00

B #5367: Added terminate option in OneFlow services (#494)

This commit is contained in:
Abel Coronado 2017-09-28 16:05:25 +02:00 committed by Tino Vázquez
parent 368e65188b
commit 51b9cad0ae
2 changed files with 8 additions and 1 deletions

View File

@ -80,6 +80,7 @@ define(function(require) {
"Service.chgrp": _commonActions.multipleAction('chgrp'),
"Service.chmod": _commonActions.singleAction('chmod'),
"Service.rename": _commonActions.singleAction('rename'),
"Service.shutdown": _commonActions.multipleAction('shutdown'),
"Service.recover": _commonActions.multipleAction('recover'),
"Service.create_dialog" : {
type: "custom",

View File

@ -47,10 +47,16 @@ define(function(require) {
layout: "main",
text: Locale.tr("Recover")
},
"Service.shutdown" : {
type: "confirm",
text: Locale.tr("Terminate"),
layout: "vmsdelete_buttons",
tip: Locale.tr("This will remove information from non-persistent hard disks")
},
"Service.delete" : {
type: "confirm",
text: Locale.tr("Delete"),
layout: "del",
layout: "vmsdelete_buttons",
tip: Locale.tr("This will delete the selected services")
},
"Service.edit_labels" : {