From 1ef9d07118256507e785598149e1fcaf10cec592 Mon Sep 17 00:00:00 2001 From: James Bromberger Date: Sat, 8 Feb 2014 16:28:52 +0000 Subject: [PATCH] Permit referring to Jessie as 'jessie', not just as 'testing' (as when Jessie goes stable in a year, we dont want to be then updating this build script). --- common/tasks/network-configuration.json | 3 +++ providers/ec2/tasks/packages-kernels.json | 3 +++ 2 files changed, 6 insertions(+) diff --git a/common/tasks/network-configuration.json b/common/tasks/network-configuration.json index 44e540b..5a3c533 100644 --- a/common/tasks/network-configuration.json +++ b/common/tasks/network-configuration.json @@ -7,6 +7,9 @@ "wheezy": [ "auto eth0", "iface eth0 inet dhcp" ], + "jessie": [ + "auto eth0", + "iface eth0 inet dhcp" ], "testing": [ "auto eth0", "iface eth0 inet dhcp" ], diff --git a/providers/ec2/tasks/packages-kernels.json b/providers/ec2/tasks/packages-kernels.json index 74a3df7..3c9e39f 100644 --- a/providers/ec2/tasks/packages-kernels.json +++ b/providers/ec2/tasks/packages-kernels.json @@ -5,6 +5,9 @@ "wheezy": { "amd64": "linux-image-amd64", "i386" : "linux-image-686" }, + "jessie": { + "amd64": "linux-image-amd64", + "i386" : "linux-image-686" }, "testing": { "amd64": "linux-image-amd64", "i386" : "linux-image-686" },