launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #15048
[Merge] lp:~andreserl/maas/maas-1.2-raring-support into lp:maas/1.2
Andres Rodriguez has proposed merging lp:~andreserl/maas/maas-1.2-raring-support into lp:maas/1.2.
Commit message:
Add Raring support.
Requested reviews:
MAAS Maintainers (maas-maintainers)
For more details, see:
https://code.launchpad.net/~andreserl/maas/maas-1.2-raring-support/+merge/145521
--
https://code.launchpad.net/~andreserl/maas/maas-1.2-raring-support/+merge/145521
Your team MAAS Maintainers is requested to review the proposed merge of lp:~andreserl/maas/maas-1.2-raring-support into lp:maas/1.2.
=== modified file 'etc/maas/import_pxe_files'
--- etc/maas/import_pxe_files 2012-11-15 16:35:09 +0000
+++ etc/maas/import_pxe_files 2013-01-30 00:35:26 +0000
@@ -13,7 +13,7 @@
#RELEASES="oneiric precise"
-RELEASES="precise quantal"
+RELEASES="precise quantal raring"
#ARCHES="amd64/generic i386/generic armhf/highbank"
#LOCALE="en_US"
#IMPORT_EPHEMERALS=1
=== modified file 'src/maasserver/enum.py'
--- src/maasserver/enum.py 2012-10-08 17:05:43 +0000
+++ src/maasserver/enum.py 2013-01-30 00:35:26 +0000
@@ -139,11 +139,14 @@
precise = 'precise'
#:
quantal = 'quantal'
+ #:
+ raring = 'raring'
DISTRO_SERIES_CHOICES = (
(DISTRO_SERIES.default, 'Default Ubuntu Release'),
(DISTRO_SERIES.precise, 'Ubuntu 12.04 LTS "Precise Pangolin"'),
(DISTRO_SERIES.quantal, 'Ubuntu 12.10 "Quantal Quetzal"'),
+ (DISTRO_SERIES.raring, 'Ubuntu 13.04 "Raring Ringtail"'),
)
Follow ups