[pve-devel] [PATCH dab] add support for Ubuntu 17.10 (artful)

Thomas Lamprecht t.lamprecht at proxmox.com
Mon Dec 4 13:32:32 CET 2017


Signed-off-by: Thomas Lamprecht <t.lamprecht at proxmox.com>
---
 DAB.pm | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/DAB.pm b/DAB.pm
index 61cf5ad..5631e9e 100644
--- a/DAB.pm
+++ b/DAB.pm
@@ -351,6 +351,8 @@ sub new {
 	$config->{ostype} = "ubuntu-16.10";
     } elsif ($suite eq 'zesty') {
 	$config->{ostype} = "ubuntu-17.04";
+    } elsif ($suite eq 'artful') {
+	$config->{ostype} = "ubuntu-17.10";
     } else {
 	die "unsupported debian suite '$suite'\n";
     }
@@ -385,7 +387,7 @@ sub new {
 	} elsif ($suite eq 'hardy' || $suite eq 'intrepid' || $suite eq 'jaunty' ||
 		 $suite eq 'xenial' || $suite eq 'wily' || $suite eq 'vivid' ||
 		 $suite eq 'trusty' || $suite eq 'precise' || $suite eq 'yakkety' ||
-		 $suite eq 'zesty') {
+		 $suite eq 'zesty' || $suite eq 'artful' ) {
 	    my $comp = "main restricted universe multiverse";
 	    push @{$config->{source}}, "http://archive.ubuntu.com/ubuntu SUITE $comp"; 
 	    push @{$config->{source}}, "http://archive.ubuntu.com/ubuntu SUITE-updates $comp"; 
@@ -453,7 +455,7 @@ sub new {
     # we cannot exclude it (instead we disable udevd)
 
     if ($suite eq 'vivid' || $suite eq 'wily' || $suite eq 'xenial' ||
-	$suite eq 'yakkety' || $suite eq 'zesty') {
+	$suite eq 'yakkety' || $suite eq 'zesty' || $suite eq 'artful') {
 	push @$incl, 'isc-dhcp-client';
 	push @$excl, qw(libmodule-build-perl);
     } elsif ($suite eq 'trusty') {
@@ -1133,7 +1135,7 @@ sub install_init_script {
     if ($suite eq 'etch' || $suite eq 'lenny') {
 	$self->ve_command ("update-rc.d $base start $prio $runlevel .");
     } elsif ($suite eq 'xenial' || $suite eq 'wily' || $suite eq 'vivid' ||
-	     $suite eq 'yakkety' || $suite eq 'zesty') {
+	     $suite eq 'yakkety' || $suite eq 'zesty' || $suite eq 'artful') {
 	die "unable to install init script (system uses systemd)\n";
     } elsif ($suite eq 'trusty' || $suite eq 'precise') {
 	die "unable to install init script (system uses upstart)\n";
@@ -1252,7 +1254,7 @@ sub bootstrap {
     # avoid warnings about non-existent resolv.conf
     write_file ("", "$rootdir/etc/resolv.conf", 0644);
 
-    if ($suite eq 'zesty' || $suite eq 'yakkety' ||
+    if ($suite eq 'artful' || $suite eq 'zesty' || $suite eq 'yakkety' ||
 	$suite eq 'xenial' || $suite eq 'wily') {
 	# no need to configure loopback device
     } else {
-- 
2.11.0





More information about the pve-devel mailing list