[02:14] ubiquity: cjwatson * r5121 python3/ (27 files in 8 dirs): [02:14] ubiquity: * Begin porting to Python 3: [02:14] ubiquity: - Use Python 3-style print functions. [02:14] ubiquity: cjwatson * r5122 python3/ (22 files in 6 dirs): [02:14] ubiquity: Use "except Exception as e" syntax rather than the old-style "except [02:14] ubiquity: Exception, e". [02:14] ubiquity: cjwatson * r5123 python3/ubiquity/debconffilter.py: rearrange OSError handling a bit to satisfy Python 3 [02:14] ubiquity: cjwatson * r5124 python3/ (4 files in 3 dirs): Use reduce from functools rather than relying on the builtin. [02:14] ubiquity: cjwatson * r5125 python3/ (7 files in 5 dirs): Use list comprehensions rather than filter. [02:16] ubiquity: cjwatson * r5126 python3/ (debian/changelog ubiquity/frontend/kde_ui.py ubiquity/tz.py): Use open() rather than file(). [02:18] ubiquity: cjwatson * r5127 python3/ (4 files in 3 dirs): Use list comprehensions rather than map. [02:24] ubiquity: cjwatson * r5128 python3/ (debian/changelog ubiquity/frontend/gtk_ui.py): Import configparser rather than ConfigParser if available. [02:56] ubiquity: cjwatson * r5121 trunk/ (7 files in 4 dirs): autogen [10:20] ubiquity: cjwatson * r5122 trunk/ (25 files in 12 dirs): [10:20] ubiquity: Drop backports of saved ID handling functions from os, now that we [10:20] ubiquity: require Python 2.7. [10:37] ubiquity: cjwatson * r5129 python3/ (debian/changelog ubiquity/plugins/ubi-usersetup.py): Use input() rather than raw_input() when running under Python 3. [10:42] ubiquity: cjwatson * r5130 python3/ (debian/changelog scripts/install.py scripts/plugininstall.py): Use set comprehensions. [10:43] ubiquity: cjwatson * r5123 trunk/ (debian/changelog ubiquity/misc.py): Remove an unnecessary use of contextlib.closing. [10:50] ubiquity: cjwatson * r5124 trunk/ (debian/changelog ubiquity/parted_server.py): Simplify PartedServer.disks. [10:52] ubiquity: cjwatson * r5131 python3/ (debian/changelog ubiquity/plugins/ubi-timezone.py): Import quote from urllib.parse rather than urllib if available. [13:31] usb-creator: cjwatson * r365 trunk/ (4 files in 4 dirs): Use Python 3-compatible print functions. [13:34] usb-creator: cjwatson * r366 trunk/ (8 files in 5 dirs): [13:34] usb-creator: Use "except Exception as e" syntax rather than the old-style "except [13:34] usb-creator: Exception, e". [13:35] usb-creator: cjwatson * r367 trunk/ (3 files in 3 dirs): [13:35] usb-creator: Use "raise Exception(value)" syntax rather than the old-style "raise [13:35] usb-creator: Exception, value". [13:40] usb-creator: cjwatson * r368 trunk/ (8 files in 8 dirs): Use absolute imports. [13:41] usb-creator: cjwatson * r369 trunk/usbcreator/backends/base/__init__.py: another absolute import [18:24] hi guys. i'm trying to automate the ubiquity installer. i want to use a preseed file, but i have to boot into a ubuntu live system first as i need a fully working system for pre configuration. where do i have to locate the .seed file when i invoke ubiquity --automatic from the command line on a ubuntu live system? [19:01] ubiquity doesn't parse preseed files itself. You must either use the file= boot parameter so that casper can process it, or pass the file to the 'debconf-set-selections' tool in the live system before invoking ubiquity if you want to do it by hand. [19:09] ubiquity: cjwatson * r5125 trunk/ (debian/rules tests/build tests/run): Fix up the test suite a bit to account for ubiquity/Makefile no longer existing. [19:11] cjwatson, thank you, so i basicly have to do: debconf-set-selections /path/to/file.seed && ubiquity --automatic and ubiquity will use the file.seed? [19:12] (or better said the selections wrote down in the file)? [20:06] right, that should work [20:47] cjwatson, perfect thank you very much :)