Thanks so much for looking at and helping verify this bug report!
I went looking at scripts/cdimage_resource and found out that the regular expression it uses to obtain the Ubuntu release (10.04 in this case) doesn't work as-is with LTS releases (because the release is called 10.04.2 LTS, the "LTS" component throws it off).
Could you please change /var/log/installer/media-info to remove the LTS:
This should be done also in /var/log/installer/casper.log (edit with sudo), remove the "LTS" in the line that starts with (should be line 8 in the file):
Found label
With this change, the test case should work correctly.
Also, if you can confirm whether this enabled you to run the test cases correctly, I'll file a bug on that behavior as well.
Hi Chad,
Thanks so much for looking at and helping verify this bug report!
I went looking at scripts/ cdimage_ resource and found out that the regular expression it uses to obtain the Ubuntu release (10.04 in this case) doesn't work as-is with LTS releases (because the release is called 10.04.2 LTS, the "LTS" component throws it off).
Could you please change /var/log/ installer/ media-info to remove the LTS:
sudo pico /var/log/ installer/ media-info
it should read:
Ubuntu 10.04.2 "Lucid Lynx" - Release i386 (20110211.1)
This should be done also in /var/log/ installer/ casper. log (edit with sudo), remove the "LTS" in the line that starts with (should be line 8 in the file):
Found label
With this change, the test case should work correctly.
Also, if you can confirm whether this enabled you to run the test cases correctly, I'll file a bug on that behavior as well.
Thanks again!