=== ogra_` is now known as ogra_ === cjwatson_ is now known as cjwatson [10:24] xnox: done, thanks [11:46] xnox: you should be able to usefully retest the wubi filesystem image now [11:54] cjwatson: by default, it fetches from http://cdimage.ubuntu.com/precise/wubi/current/ , which is empty, not http://cdimage.ubuntu.com/precise/wubi/pending/ [11:55] cjwatson: can you "promote" them? [11:55] (well, not default default, but the daily fallback is to fetch from current) [11:55] or i can recompile with fetching from pending [11:56] huh, how odd [11:56] will fix shortly [12:17] xnox: fixed the code so that this won't happen again; http://cdimage.ubuntu.com/precise/wubi/current/ is up to date now [12:57] cjwatson: wubi is good to go. [12:57] cjwatson: it's not on the iso-tracker, but i've tested it and it's all fine now. [12:58] great, thanks [12:59] the tracker code disliked it for some reason - I didn't bother debugging it because, well, not desperately useful effort === evilshadeslayer is now known as shadeslayer === shadeslayer is now known as Guest3206 === shadeslayer_ is now known as shadeslayer [19:00] I had a ks.cfg %post% question; `touch /hello.txt' creates a file, but `touch /home/user/hello.txt' has no effect. [19:00] Looks like %post% scripts run before the user is created. [19:01] Do I need to mkdir then? [19:01] Bit difficult to change that, but you may be able to solve this by thinking about what you're trying to do [19:01] Copy in an ssh key. [19:01] Do you actually want to have something created in the home directory of all newly-created users, or just the first one? [19:02] Just the first one. [19:02] Hmm [19:03] It would be simplest to use preseed/late_command for this, which runs a bit later [19:04] Any docs for that? [19:04] preseed preseed/late_command string touch /home/user/hello.txt [19:04] https://help.ubuntu.com/12.04/installation-guide/i386/automatic-install.html [19:04] under "Additions" [19:05] Thanks! [19:05] preseed/late_command specifically is documented in https://help.ubuntu.com/12.04/installation-guide/i386/preseed-advanced.html [19:05] This one was quite confusing, I really appreciate your help. [19:05] You're welcome [19:09] Will a command like cat - << EOF [19:09] long file lines... [19:09] EOF [19:10] work with preseed latecommand? [19:13] ecdhe: No. For that, you're best off writing a separate script, downloading it using wget, chmod +x and running it [19:13] (At least I don't think so. At the very least the quoting would be hairy) [19:14] That's what I thought.