bump version to 3.0-10

new helper next_spice_port()
This commit is contained in:
Dietmar Maurer 2013-12-09 13:18:40 +01:00
parent eb7047f674
commit 2f13cbb5a6
3 changed files with 13 additions and 1 deletions

View File

@ -1,7 +1,7 @@
RELEASE=3.1
VERSION=3.0
PKGREL=9
PKGREL=10
PACKAGE=libpve-common-perl

View File

@ -729,6 +729,10 @@ sub next_vnc_port {
return next_unused_port(5900, 6000);
}
sub next_spice_port {
return next_unused_port(61000, 61099);
}
# NOTE: NFS syscall can't be interrupted, so alarm does
# not work to provide timeouts.
# from 'man nfs': "Only SIGKILL can interrupt a pending NFS operation"

8
debian/changelog vendored
View File

@ -1,3 +1,11 @@
libpve-common-perl (3.0-10) unstable; urgency=low
* wait_for_vnc_port: avoid unnecessarry delay by using usleep
* new helper next_spice_port()
-- Proxmox Support Team <support@proxmox.com> Mon, 09 Dec 2013 13:16:55 +0100
libpve-common-perl (3.0-9) unstable; urgency=low
* export regular expressions for IPv4 and IPv6 addresses