[03:52] cjwatson: what were those main keyboard layouts you told me about at UDS? the ones I should focus on? ... this is why I want replay on life :) [04:02] and is there a wiki page or something with some pretty pictures? [09:09] ubiquity: superm1 * r3614 ubiquity/ (debian/changelog ubiquity/components/ubi-intro.py): [09:09] ubiquity: Correct a variable that didn't get changed from pychecker [09:09] ubiquity: cleanup in the intro plugin. === cjwatson_ is now known as cjwatson [09:41] shtylman: Brazilian and Japanese, since they're 106-key layouts [13:07] argh. Just realized a nasty corner case of copying the keyring and relevant portion of gconf (/system/networking) to the target system. What if the user didn't elect to format /home or /? [13:08] hrm, I guess I could just check for existence of both and do nothing if they're already there === robbiew-afk is now known as robbiew [13:50] if I preseed repositories with local0/repository, will the latest packages be retrieved from that location during the installation or will that only result in the repositories being added to the sources.list file after the installation has completed? [13:50] cjwatson: what about british keyboards? [13:50] anything different in key number there? or still 104 key? [13:50] shtylman: they fall into the giant category of "everything that isn't us, br, or jp" [13:51] *everything* else is 105-key, at least to an excellent first approximation [13:51] us is the only 104-key layout I know of [13:51] ahh ok [13:51] well... that gives me a starting point :) [13:51] cr3: should be the former, at least for netboot installations. CD installations are a bit different because in general we want to prefer stuff from the CD over a giant download [13:53] cjwatson: I'm thinking that if local0/repository is defined explicitly, then the user gets what he's asking for. however, for the CD, if that means that the default repository is set to the CD itself and local0/repository to archive.u.c, then I can appreciate that use case [13:54] (where archive.u.c is just shorthand for whatever magic the installer does to determine the closest mirror) [13:55] um [13:55] archive.u.c is handled separately. apt-setup/local0/repository is strictly for local overrides only [13:56] you might be right that it might make sense to handle local* differently on CD installs, although unfortunately it's actually kind of hard to unpick that by the time we notice ... [13:56] feel free to file a bug on pkgsel to improve that [15:03] base-installer: cjwatson * r389 ubuntu/ (debian/changelog library.sh): [15:03] base-installer: Explicitly ignore Recommends while installing the kernel. We don't want [15:03] base-installer: to install bootloaders at this point. [15:05] base-installer: cjwatson * r390 ubuntu/debian/changelog: releasing version 1.103ubuntu2 === rgreening_ is now known as rgreening [17:26] cdrom-detect: cjwatson * r455 ubuntu/debian/ (cdrom-detect.postinst changelog): [17:26] cdrom-detect: Copy /cdrom/.disk/info to /var/log/media-info, in order that we get [17:26] cdrom-detect: /var/log/installer/media-info on the installed system; doing this in [17:26] cdrom-detect: save-logs is too late because /cdrom is already unmounted by that point [17:26] cdrom-detect: (LP: #364649). [17:29] cdrom-detect: cjwatson * r456 ubuntu/debian/changelog: releasing version 1.32ubuntu2 [17:30] installation-report: cjwatson * r71 ubuntu/ (debian/changelog finish-install.d/94save-logs): [17:30] installation-report: Revert 2.39ubuntu2, which didn't work as /cdrom is unmounted by this [17:30] installation-report: point. This is now handled in cdrom-detect instead. [17:31] installation-report: cjwatson * r72 ubuntu/debian/changelog: releasing version 2.39ubuntu3 [18:35] hey [18:36] I'd like to install ubuntu on my powerpc mac, but my cd drive is broken === robbiew is now known as robbiew-afk [19:52] can someone point me to documentation on how to maintain a local repo and add new udebs to it for development purposes? [20:13] I think I figured out how to generate a new Packages file using dpkg-scanpackages [20:13] now I think I'm having signing issues: [20:13] net-retriever: gpgv: BAD signature from "Ubuntu Archive Automatic Signing Key " [20:14] anna[2013]: cat: can't open '/tmp/net-retriever-2017-deduplicate/*'; No such file or directory [20:15] anna[2013]: WARNING **: bad d-i Packages file [20:15] delete Release.gpg, you can't replicate it [20:16] there's a documented preseed to disable authentication [20:16] so I need a preseed on top of deleting Release.gpg? [20:16] 'd-i debian-installer/allow_unauthenticated string true' [20:16] it's also possible to feed in a key using apt-setup/local0/key, but that's more work [20:17] (both preseeds are documented in Appendix B to the installation guide) [20:19] cjwatson: network preseeding occurs early enough to be effective? [20:19] or do I need to do initrd preseeding, since I'm doing a netboot setup [20:31] ok, so the preseed worked for authentication, but now I see that I need to regenerate the Release file [20:31] is there some utility to do that? [20:32] apt-ftparchive [20:32] (supersedes dpkg-scanpackages) [20:35] cjwatson: thanks [20:35] I think I've finally gotten everything I need to start some dev work [20:36] cjwatson: one architectural question: when I need to bypass a later installation task (like user-setup) I figured I would touch a file somewhere and check for it in the user-setup postinst script before continuing [20:37] does this seem reasonable, and if so where would you put the "stamp" file [20:39] you're bypassing things conditionally? [20:39] (where: /var/run/) [20:39] cjwatson: yes [20:40] seems ok, though if you have to modify user-setup.postinst anyway you could just modify it to do what you want [20:40] I wouldn't put something with stamp files like that into Ubuntu but it's OK for a derivative [20:40] so here's my idea in a nutshell: proper backup and restore [20:41] have a utility that only backs up the packages that are currently installed along with /etc, /home/ /usr/local etc. [20:42] then at install time (or restore time as it may be), you can restore from the backup by: [20:42] 1. copying old /etc/passed and /etc/group into /target [20:42] 2. install old /etc/apt/sources* into /target [20:43] 3. install all packages from backup list (exact same packages versions, not the latest versions) [20:44] 4. merge hw specific /etc config files (i.e. don't overwrite things like xorg.conf or module blacklists in case the hw platform has changed) [20:44] 5. copy over the rest of the backed up files [20:44] but this necessitates skipping over user-setup [20:44] right. sounds worthwhile, though I imagine there are lots of scary corner cases and so I'm more than happy to let you prototype it ... :-) [20:45] (e.g. sometimes the package list varies slightly depending on the hardwarE) [20:45] s/E/e/ [20:45] cjwatson: yeah, lots of corner cases, but might as well try it and get something that works for many/most people [20:46] a stamp file is the easiest approach; maybe later it'll be worth figuring out something more elegant [20:46] cjwatson: I'm getting an error now on debootstrap: [20:46] E: NOSCRIPT [20:47] EA: /usr/share/debootstrap/scripts/unknown [20:47] EF: No such script: %s [20:47] any idea what that means before I do more in depth debugging? [20:47] are you using a modified CD image? [20:47] I'm doing netboot [20:47] I couldn't figure out how to make a full cd [20:48] and netboot seems to work well enough so far [20:48] probably means you forgot to fill in the Suite and/or Codename fields in your Release file [20:48] compare http://archive.ubuntu.com/ubuntu/dists/lucid/Release [20:49] actually, I'm still working off of karmic, cause I don't want to deal with lucid breaking things as I prototype [20:49] it had been working fine until I regnereated Packages and Release [20:49] lucid vs. karmic wasn't significant in my comment [20:49] check your regenerated Release file :-) [20:50] I bet it says "unknown" in it somewhere [20:50] I actually didn't "regen" the Release file; I had already manually updated it with new md5sums and sizes before I saw your comment about apt-ftparchive [20:51] wait... [20:51] you're right [20:51] codename is unknown somehow [20:51] oh.... I had played around with apt-move [20:51] and it mucked it up [20:56] base system is installing right now [20:56] thanks :) [21:24] Are the no cases anymore where the installer chooses lilo over grub? [21:25] not TTBOMK [21:25] All the LVM or XFS special cases are gone? Neat. [21:25] although the manual option is still there [21:25] (grub-installer/skip=true) [21:25] I didn't realise. I haven't done an install for my own needs for a while. [21:26] possible compromise here: take lilo off the CDs, but leave it in supported [21:26] that way if people come to us saying "argh, I needed lilo" we can (a) point them at netboot (b) find out why [21:26] it will help with (b) because they'll have to make a conscious change [21:27] but won't leave them completely out in the cold [21:27] grub2 covers LVM, and we fixed the XFS problems a while back [21:27] Right. You did see mathiaz' e-mail to ubuntu-devel earlier today, right? lilo is suggested for demotion to universe. [21:28] not yet though I was aware of the general proposal from a UDS discussion [21:28] I'll follow up with my counterproposal [21:28] Wicked. Just wanted to make sure it was on your radar. === robbiew-afk is now known as robbiew [22:37] cjwatson: you mentioned that apt-ftparchive can generate the Release file in the repo, but I haven't figured out how to do that [22:37] can you explain how you do it? [22:38] I don't do this very often, but it's 'apt-ftparchive release' or '... generate'. However it's very late for me, I'll have to refer you to the docs or the web [22:38] hmm, the man page didn't mention any release command [22:38] ugh... [22:38] I was looking at an apparently out of date man page on line [22:39] thanks === robbiew is now known as robbiew-afk