diff -Nru cobbler-2.1.0+git20110602/debian/changelog cobbler-2.1.0+git20110602/debian/changelog --- cobbler-2.1.0+git20110602/debian/changelog 2011-09-29 19:57:42.000000000 -0400 +++ cobbler-2.1.0+git20110602/debian/changelog 2011-12-02 12:31:26.000000000 -0500 @@ -1,3 +1,11 @@ +cobbler (2.1.0+git20110602-0ubuntu26.1) oneiric-proposed; urgency=low + + * SRU (LP: #899283): + - debian/patches/47_ubuntu_add_oneiric_codename.patch: Updated to add + 'precise' as a importable/supported release. + + -- Andres Rodriguez Fri, 02 Dec 2011 12:31:21 -0500 + cobbler (2.1.0+git20110602-0ubuntu26) oneiric; urgency=low * debian/cobbler-ubuntu-import: Add --check-update and --remove diff -Nru cobbler-2.1.0+git20110602/debian/patches/47_ubuntu_add_oneiric_codename.patch cobbler-2.1.0+git20110602/debian/patches/47_ubuntu_add_oneiric_codename.patch --- cobbler-2.1.0+git20110602/debian/patches/47_ubuntu_add_oneiric_codename.patch 2011-09-29 19:38:57.000000000 -0400 +++ cobbler-2.1.0+git20110602/debian/patches/47_ubuntu_add_oneiric_codename.patch 2011-12-02 12:30:42.000000000 -0500 @@ -4,27 +4,27 @@ Author: Andres Rodriguez Index: cobbler-2.1.0+git20110602/cobbler/codes.py =================================================================== ---- cobbler-2.1.0+git20110602.orig/cobbler/codes.py 2011-06-17 16:26:04.434883266 -0400 -+++ cobbler-2.1.0+git20110602/cobbler/codes.py 2011-06-17 16:26:21.154907801 -0400 +--- cobbler-2.1.0+git20110602.orig/cobbler/codes.py 2011-12-02 12:29:44.188504558 -0500 ++++ cobbler-2.1.0+git20110602/cobbler/codes.py 2011-12-02 12:30:40.192479895 -0500 @@ -44,7 +44,7 @@ "redhat" : [ "rhel2.1", "rhel3", "rhel4", "rhel5", "rhel6", "fedora5", "fedora6", "fedora7", "fedora8", "fedora9", "fedora10", "fedora11", "fedora12", "fedora13", "fedora14", "generic24", "generic26", "virtio26", "other" ], "suse" : [ "sles10", "generic24", "generic26", "virtio26", "other" ], "debian" : [ "etch", "lenny", "squeeze", "sid", "stable", "testing", "unstable", "generic24", "generic26", "other" ], - "ubuntu" : [ "dapper", "hardy", "intrepid", "jaunty", "karmic", "lucid", "maverick", "natty" ], -+ "ubuntu" : [ "dapper", "hardy", "intrepid", "jaunty", "karmic", "lucid", "maverick", "natty", "oneiric" ], ++ "ubuntu" : [ "dapper", "hardy", "intrepid", "jaunty", "karmic", "lucid", "maverick", "natty", "oneiric", "precise" ], "generic" : [ "generic24", "generic26", "other" ], "windows" : [ "winxp", "win2k", "win2k3", "vista", "other" ], "unix" : [ "solaris9", "solaris10", "freebsd6", "openbsd4", "other" ], Index: cobbler-2.1.0+git20110602/cobbler/modules/manage_import_debian_ubuntu.py =================================================================== ---- cobbler-2.1.0+git20110602.orig/cobbler/modules/manage_import_debian_ubuntu.py 2011-06-17 16:26:37.664932008 -0400 -+++ cobbler-2.1.0+git20110602/cobbler/modules/manage_import_debian_ubuntu.py 2011-06-17 16:27:32.575012553 -0400 +--- cobbler-2.1.0+git20110602.orig/cobbler/modules/manage_import_debian_ubuntu.py 2011-12-02 12:29:44.188504558 -0500 ++++ cobbler-2.1.0+git20110602/cobbler/modules/manage_import_debian_ubuntu.py 2011-12-02 12:30:00.104497396 -0500 @@ -281,7 +281,7 @@ if self.breed == "debian": return ["etch", "lenny", "squeeze", "sid", "stable", "testing", "unstable", "experimental",] elif self.breed == "ubuntu": - return ["dapper", "hardy", "karmic", "lucid", "maverick", "natty",] -+ return ["dapper", "hardy", "karmic", "lucid", "maverick", "natty", "oneiric",] ++ return ["dapper", "hardy", "karmic", "lucid", "maverick", "natty", "oneiric", "precise",] else: return [] @@ -33,7 +33,7 @@ dist_names = ['etch','lenny',] elif self.breed == "ubuntu": - dist_names = ['dapper','hardy','intrepid','jaunty','karmic','lynx','maverick','natty',] -+ dist_names = ['dapper','hardy','intrepid','jaunty','karmic','lynx','maverick','natty','oneiric',] ++ dist_names = ['dapper','hardy','intrepid','jaunty','karmic','lynx','maverick','natty','oneiric','precise',] else: return None