Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pve-manager
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
pve-manager
Commits
0b3b0d7d
Commit
0b3b0d7d
authored
Feb 11, 2015
by
Dietmar Maurer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
GUI: mobe startall/stopall/migrateall into submenu
parent
4cecbd65
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
63 additions
and
43 deletions
+63
-43
Utils.js
www/manager/Utils.js
+2
-1
Config.js
www/manager/node/Config.js
+61
-42
No files found.
www/manager/Utils.js
View file @
0b3b0d7d
...
@@ -555,7 +555,8 @@ Ext.define('PVE.Utils', { statics: {
...
@@ -555,7 +555,8 @@ Ext.define('PVE.Utils', { statics: {
vzdump
:
[
''
,
gettext
(
'
Backup
'
)
],
vzdump
:
[
''
,
gettext
(
'
Backup
'
)
],
aptupdate
:
[
''
,
gettext
(
'
Update package database
'
)
],
aptupdate
:
[
''
,
gettext
(
'
Update package database
'
)
],
startall
:
[
''
,
gettext
(
'
Start all VMs and Containers
'
)
],
startall
:
[
''
,
gettext
(
'
Start all VMs and Containers
'
)
],
stopall
:
[
''
,
gettext
(
'
Stop all VMs and Containers
'
)
]
stopall
:
[
''
,
gettext
(
'
Stop all VMs and Containers
'
)
],
migrateall
:
[
''
,
gettext
(
'
Migrate all VMs and Containers
'
)
]
},
},
format_task_description
:
function
(
type
,
id
)
{
format_task_description
:
function
(
type
,
id
)
{
...
...
www/manager/node/Config.js
View file @
0b3b0d7d
...
@@ -28,48 +28,67 @@ Ext.define('PVE.node.Config', {
...
@@ -28,48 +28,67 @@ Ext.define('PVE.node.Config', {
}
}
});
});
};
};
var
startallvmBtn
=
Ext
.
create
(
'
PVE.button.Button
'
,
{
var
actionBtn
=
Ext
.
create
(
'
Ext.Button
'
,
{
text
:
gettext
(
'
Start All VMs
'
),
text
:
gettext
(
'
More
'
),
confirmMsg
:
Ext
.
String
.
format
(
gettext
(
"
Do you really want to start all Vms on node {0}?
"
),
nodename
),
disabled
:
!
caps
.
nodes
[
'
Sys.PowerMgmt
'
],
handler
:
function
()
{
menu
:
new
Ext
.
menu
.
Menu
({
PVE
.
Utils
.
API2Request
({
items
:
[
params
:
{
force
:
1
},
{
url
:
'
/nodes/
'
+
nodename
+
'
/startall
'
,
text
:
gettext
(
'
Start All VMs
'
),
method
:
'
POST
'
,
icon
:
'
/pve2/images/start.png
'
,
waitMsgTarget
:
me
,
handler
:
function
()
{
failure
:
function
(
response
,
opts
)
{
var
msg
=
Ext
.
String
.
format
(
gettext
(
"
Do you really want to start all Vms on node {0}?
"
),
nodename
);
Ext
.
Msg
.
alert
(
'
Error
'
,
response
.
htmlStatus
);
Ext
.
Msg
.
confirm
(
gettext
(
'
Confirm
'
),
msg
,
function
(
btn
)
{
}
if
(
btn
!==
'
yes
'
)
{
});
return
;
}
}
});
PVE
.
Utils
.
API2Request
({
params
:
{
force
:
1
},
var
stopallvmBtn
=
Ext
.
create
(
'
PVE.button.Button
'
,
{
url
:
'
/nodes/
'
+
nodename
+
'
/startall
'
,
text
:
gettext
(
'
Stop All VMs
'
),
method
:
'
POST
'
,
confirmMsg
:
Ext
.
String
.
format
(
gettext
(
"
Do you really want to stop all Vms on node {0}?
"
),
nodename
),
waitMsgTarget
:
me
,
handler
:
function
()
{
failure
:
function
(
response
,
opts
)
{
PVE
.
Utils
.
API2Request
({
Ext
.
Msg
.
alert
(
'
Error
'
,
response
.
htmlStatus
);
url
:
'
/nodes/
'
+
nodename
+
'
/stopall
'
,
}
method
:
'
POST
'
,
});
waitMsgTarget
:
me
,
});
failure
:
function
(
response
,
opts
)
{
}
Ext
.
Msg
.
alert
(
'
Error
'
,
response
.
htmlStatus
);
},
{
text
:
gettext
(
'
Stop All VMs
'
),
icon
:
'
/pve2/images/gtk-stop.png
'
,
handler
:
function
()
{
var
msg
=
Ext
.
String
.
format
(
gettext
(
"
Do you really want to stop all Vms on node {0}?
"
),
nodename
);
Ext
.
Msg
.
confirm
(
gettext
(
'
Confirm
'
),
msg
,
function
(
btn
)
{
if
(
btn
!==
'
yes
'
)
{
return
;
}
PVE
.
Utils
.
API2Request
({
url
:
'
/nodes/
'
+
nodename
+
'
/stopall
'
,
method
:
'
POST
'
,
waitMsgTarget
:
me
,
failure
:
function
(
response
,
opts
)
{
Ext
.
Msg
.
alert
(
'
Error
'
,
response
.
htmlStatus
);
}
});
});
}
},
{
text
:
gettext
(
'
Migrate All VMs
'
),
icon
:
'
/pve2/images/forward.png
'
,
handler
:
function
()
{
var
win
=
Ext
.
create
(
'
PVE.window.MigrateAll
'
,
{
nodename
:
nodename
,
});
win
.
show
();
}
}
}
});
]
}
})
});
});
var
migrateallvmBtn
=
Ext
.
create
(
'
PVE.button.Button
'
,
{
text
:
gettext
(
'
Migrate All VMs
'
),
handler
:
function
()
{
var
win
=
Ext
.
create
(
'
PVE.window.MigrateAll
'
,
{
nodename
:
nodename
,
});
win
.
show
();
me
.
mon
(
win
,
'
close
'
,
me
.
reload
,
me
);
}
});
var
restartBtn
=
Ext
.
create
(
'
PVE.button.Button
'
,
{
var
restartBtn
=
Ext
.
create
(
'
PVE.button.Button
'
,
{
text
:
gettext
(
'
Restart
'
),
text
:
gettext
(
'
Restart
'
),
...
@@ -102,7 +121,7 @@ Ext.define('PVE.node.Config', {
...
@@ -102,7 +121,7 @@ Ext.define('PVE.node.Config', {
title
:
gettext
(
'
Node
'
)
+
"
'
"
+
nodename
+
"
'
"
,
title
:
gettext
(
'
Node
'
)
+
"
'
"
+
nodename
+
"
'
"
,
hstateid
:
'
nodetab
'
,
hstateid
:
'
nodetab
'
,
defaults
:
{
statusStore
:
me
.
statusStore
},
defaults
:
{
statusStore
:
me
.
statusStore
},
tbar
:
[
startallvmBtn
,
stopallvmBtn
,
migrateallvmBtn
,
restartBtn
,
shutdownBtn
,
shellBtn
]
tbar
:
[
restartBtn
,
shutdownBtn
,
shellBtn
,
actionBtn
]
});
});
if
(
caps
.
nodes
[
'
Sys.Audit
'
])
{
if
(
caps
.
nodes
[
'
Sys.Audit
'
])
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment