ubuntu-server-iso-testing-dev team mailing list archive
-
ubuntu-server-iso-testing-dev team
-
Mailing list archive
-
Message #00231
[Merge] lp:~powersj/ubuntu-server-iso-testing/enable-live-server into lp:ubuntu-server-iso-testing
Joshua Powers has proposed merging lp:~powersj/ubuntu-server-iso-testing/enable-live-server into lp:ubuntu-server-iso-testing.
Commit message:
Add live-server (subiquity) support
This adds the knowledge for downloading the live-server variant ISO.
Requested reviews:
Ubuntu Server Iso Testing Developers (ubuntu-server-iso-testing-dev)
For more details, see:
https://code.launchpad.net/~powersj/ubuntu-server-iso-testing/enable-live-server/+merge/337659
--
Your team Ubuntu Server Iso Testing Developers is requested to review the proposed merge of lp:~powersj/ubuntu-server-iso-testing/enable-live-server into lp:ubuntu-server-iso-testing.
=== modified file 'download-latest-test-iso.py'
--- download-latest-test-iso.py 2014-03-07 09:10:54 +0000
+++ download-latest-test-iso.py 2018-02-13 17:25:35 +0000
@@ -160,6 +160,9 @@
l_url = os.path.join(options.base_url, release_part, flavor_part, 'daily')
elif options.variant == 'dvd':
l_url = os.path.join(options.base_url, release_part, flavor_part, 'dvd')
+ elif options.variant == 'live-server':
+ l_url = os.path.join(options.base_url, 'ubuntu-server',release_part,
+ 'daily-live')
else:
# Default to server
l_url = os.path.join(options.base_url, 'ubuntu-server', release_part,
Follow ups