← Back to team overview

launchpad-reviewers team mailing list archive

[Merge] lp:~smoser/maas/import-isos-update-lp972073 into lp:maas

 

Scott Moser has proposed merging lp:~smoser/maas/import-isos-update-lp972073 into lp:maas.

Requested reviews:
  Launchpad code reviewers (launchpad-reviewers)
Related bugs:
  Bug #972073 in MAAS: "maas-import-isos --update updates parent <suite>-<arch> profile"
  https://bugs.launchpad.net/maas/+bug/972073

For more details, see:
https://code.launchpad.net/~smoser/maas/import-isos-update-lp972073/+merge/100548

fix 'maas-import-isos --update' to operate on maas-<suite>-<arch> profile rather than <suite>-<arch> profile, which ends up doing nothing useful.


-- 
https://code.launchpad.net/~smoser/maas/import-isos-update-lp972073/+merge/100548
Your team Launchpad code reviewers is requested to review the proposed merge of lp:~smoser/maas/import-isos-update-lp972073 into lp:maas.
=== modified file 'scripts/maas-import-isos'
--- scripts/maas-import-isos	2012-03-21 00:30:51 +0000
+++ scripts/maas-import-isos	2012-04-03 04:09:18 +0000
@@ -86,7 +86,7 @@
 	for r in $RELEASES; do
 		for a in $ARCHES; do
 			a=$(name_arch_in_cobbler_style "$a")
-			profile="$r-$a"
+			profile="maas-$r-$a"
 			# If profile exists, update it.
 			if (cobbler profile list | grep -qs " $profile$"); then
 				cobbler profile edit --name="$profile" --kopts="$KOPTS"


Follow ups