Commit f32f3f46 authored by Dietmar Maurer's avatar Dietmar Maurer

fix startup ordering

parent 39bd8e8f
......@@ -939,7 +939,7 @@ __PACKAGE__->register_method ({
my $startList = &$get_start_stop_list($nodename, 1);
# Note: use numeric sorting with <=>
foreach my $order (sort sort {$a <=> $b} keys %$startList) {
foreach my $order (sort {$a <=> $b} keys %$startList) {
my $vmlist = $startList->{$order};
foreach my $vmid (sort {$a <=> $b} keys %$vmlist) {
......
pve-manager (2.1-14) unstable; urgency=low
* fix startup ordering
-- Proxmox Support Team <support@proxmox.com> Tue, 07 Aug 2012 09:20:01 +0200
pve-manager (2.1-13) unstable; urgency=low
* update Danish translation
......
......@@ -2,7 +2,7 @@ RELEASE=2.1
VERSION=2.1
PACKAGE=pve-manager
PACKAGERELEASE=13
PACKAGERELEASE=14
BINDIR=${DESTDIR}/usr/bin
PERLLIBDIR=${DESTDIR}/usr/share/perl5
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment