]> git.proxmox.com Git - pve-container.git/commitdiff
allow older debian versions (>= 4 (etch))
authorDietmar Maurer <dietmar@proxmox.com>
Fri, 11 Sep 2015 07:17:20 +0000 (09:17 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Fri, 11 Sep 2015 07:17:20 +0000 (09:17 +0200)
src/PVE/LXC/Setup/Debian.pm

index ebfc97262faf33ae23efdc12000168bb47d2e194..1b2a2772dbc699cb7292b3e9749b0a8c771b18ed 100644 (file)
@@ -24,7 +24,7 @@ sub new {
     $version = $1;
 
     die "unsupported debian version '$version'\n" 
-       if !($version >= 6 && $version < 9);
+       if !($version >= 4 && $version < 9);
 
     my $self = { conf => $conf, rootdir => $rootdir, version => $version };