mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-05-25 10:50:41 +00:00
fix bug #337: avoid warning with pvectl
This commit is contained in:
parent
1332d281f6
commit
adf8c213cc
@ -43,8 +43,8 @@ my $cmddef = {
|
|||||||
|
|
||||||
exit 0 if (!scalar(@$vmlist));
|
exit 0 if (!scalar(@$vmlist));
|
||||||
|
|
||||||
printf "%10s %-20s %-10s %-10s %-12s %-10s\n",
|
printf "%10s %-20s %-10s %-10s %-12s\n",
|
||||||
qw(VMID NAME STATUS MEM(MB) DISK(GB));
|
qw(VMID NAME STATUS MEM(MB) DISK(GB));
|
||||||
|
|
||||||
foreach my $rec (sort { $a->{vmid} <=> $b->{vmid} } @$vmlist) {
|
foreach my $rec (sort { $a->{vmid} <=> $b->{vmid} } @$vmlist) {
|
||||||
printf "%10s %-20s %-10s %-10s %-12.2f\n", $rec->{vmid}, $rec->{name} || '',
|
printf "%10s %-20s %-10s %-10s %-12.2f\n", $rec->{vmid}, $rec->{name} || '',
|
||||||
|
6
debian/changelog.Debian
vendored
6
debian/changelog.Debian
vendored
@ -1,3 +1,9 @@
|
|||||||
|
pve-manager (2.3-9) unstable; urgency=low
|
||||||
|
|
||||||
|
* fix bug #337: avoid warning with pvectl
|
||||||
|
|
||||||
|
-- Proxmox Support Team <support@proxmox.com> Fri, 22 Feb 2013 06:11:38 +0100
|
||||||
|
|
||||||
pve-manager (2.3-8) unstable; urgency=low
|
pve-manager (2.3-8) unstable; urgency=low
|
||||||
|
|
||||||
* Allow to set tablet option on the GUI
|
* Allow to set tablet option on the GUI
|
||||||
|
@ -2,7 +2,7 @@ RELEASE=2.3
|
|||||||
|
|
||||||
VERSION=2.3
|
VERSION=2.3
|
||||||
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
|
||||||
|
Loading…
Reference in New Issue
Block a user