Commit 532e77c7 authored by Dietmar Maurer's avatar Dietmar Maurer

use validdirectory instead of validdomains

parent fbf2ad18
......@@ -85,15 +85,15 @@ sub check_fields {
return undef if $info->{status} ne 'Active';
foreach my $f (qw(validdomain productname regdate nextduedate)) {
foreach my $f (qw(validdirectory productname regdate nextduedate)) {
if (!$info->{$f}) {
die "Missing field '$f'\n";
}
}
my $found;
foreach my $dom (split(/,/, $info->{validdomain})) {
if ($dom eq $server_id) {
foreach my $hwid (split(/,/, $info->{validdirectory})) {
if ($hwid eq $server_id) {
$found = 1;
last;
}
......@@ -193,7 +193,8 @@ sub check_subscription {
my $params = {
licensekey => $key,
domain => $server_id,
dir => $server_id,
domain => 'www.proxmox.com',
ip => 'localhost',
check_token => $check_token,
};
......
pve-manager (2.0-52) unstable; urgency=low
* fix Subscription code
-- Proxmox Support Team <support@proxmox.com> Thu, 29 Mar 2012 09:32:32 +0200
pve-manager (2.0-51) unstable; urgency=low
* fix bug #55: add Migrate and Stop to context menu
......
......@@ -2,7 +2,7 @@ RELEASE=2.0
VERSION=2.0
PACKAGE=pve-manager
PACKAGERELEASE=51
PACKAGERELEASE=52
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