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
2aae436c
Commit
2aae436c
authored
Jun 05, 2012
by
Dietmar Maurer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use numeric sorting in startall
parent
712588a4
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
4 deletions
+11
-4
Nodes.pm
PVE/API2/Nodes.pm
+4
-3
changelog.Debian
debian/changelog.Debian
+6
-0
defines.mk
defines.mk
+1
-1
No files found.
PVE/API2/Nodes.pm
View file @
2aae436c
...
@@ -938,10 +938,11 @@ __PACKAGE__->register_method ({
...
@@ -938,10 +938,11 @@ __PACKAGE__->register_method ({
my
$startList
=
&
$get_start_stop_list
(
$nodename
,
1
);
my
$startList
=
&
$get_start_stop_list
(
$nodename
,
1
);
foreach
my
$order
(
sort
keys
%
$startList
)
{
# Note: use numeric sorting with <=>
foreach
my
$order
(
sort
sort
{
$a
<=>
$b
}
keys
%
$startList
)
{
my
$vmlist
=
$startList
->
{
$order
};
my
$vmlist
=
$startList
->
{
$order
};
foreach
my
$vmid
(
sort
keys
%
$vmlist
)
{
foreach
my
$vmid
(
sort
{
$a
<=>
$b
}
keys
%
$vmlist
)
{
my
$d
=
$vmlist
->
{
$vmid
};
my
$d
=
$vmlist
->
{
$vmid
};
PVE::Cluster::
check_cfs_quorum
();
# abort when we loose quorum
PVE::Cluster::
check_cfs_quorum
();
# abort when we loose quorum
...
...
debian/changelog.Debian
View file @
2aae436c
pve-manager (2.1-9) unstable; urgency=low
* use numeric sorting in startall
-- Proxmox Support Team <support@proxmox.com> Tue, 05 Jun 2012 06:16:06 +0200
pve-manager (2.1-8) unstable; urgency=low
pve-manager (2.1-8) unstable; urgency=low
* also list pools with VM.Allocate permissions
* also list pools with VM.Allocate permissions
...
...
defines.mk
View file @
2aae436c
...
@@ -2,7 +2,7 @@ RELEASE=2.1
...
@@ -2,7 +2,7 @@ RELEASE=2.1
VERSION=2.1
VERSION=2.1
PACKAGE=pve-manager
PACKAGE=pve-manager
PACKAGERELEASE=
8
PACKAGERELEASE=
9
BINDIR=${DESTDIR}/usr/bin
BINDIR=${DESTDIR}/usr/bin
PERLLIBDIR=${DESTDIR}/usr/share/perl5
PERLLIBDIR=${DESTDIR}/usr/share/perl5
...
...
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