/srv/irclogs.ubuntu.com/2015/07/15/#ubuntu-devel.txt

=== rcj` is now known as rcj
pittiGood morning03:58
Unit193Heya.04:04
=== G_ is now known as G
Unit193sbeattie: Hello!  In apparmor you have  Depends: initramfs-tools  when it'd be better to have  Depends: initramfs-tools | linux-initramfs-tool  and will close bug 1109029 for apparmor.  (Biggest reason to do this would be the experimental dracut utility, I did this change locally with success.)05:00
ubottubug 1109029 in udev (Ubuntu) "Depend on linux-initramfs-tools" [Wishlist,Confirmed] https://launchpad.net/bugs/110902905:00
=== marcusto_ is now known as marcustomlinson
dholbachgood morning07:13
infinitypitti: *nudge*07:22
pittiinfinity: *eek*07:22
infinitypitti: Feel like debugging ddeb-retriever a bit?07:22
pittiinfinity: still the linux ddebs?07:23
pittiinfinity: debugging britney ATM, but I can append it to my ever-growing pre-holiday TODO :)07:23
infinitypitti: Yes.  Missing all the amd64 ddebs for 4.0.0-4.7, and half (??) the ddebs for armhf.07:23
infinitypitti: And no amount of fudging dates and trying to force the issue got any of the missing ones to show up in --verbose output at all, so I'm a bit stumped.07:23
pittiif the combined brain power of cjwatson (as the author of this) and you didn't figure it out quickly, I suppose it'll take me a good half day at least; I made a note of it, but I'd really like to fix britney first07:24
infinitypitti: Well, Colin didn't really have time to dig deeply, he just suggested "run it with verbose and have a look". :P07:25
pittiheh, ok :) here's hope that it's simpler then07:25
infinitypitti: And my python is much worse than yours, so I figured it made more sense to ask you to look than to muddle through.07:25
pittiyep, absolutely; I'll see to doing that today07:26
pittiLaney: ah, two workers died with some "Authorization Failure" error; want to practice restarting them?07:28
pittiLaney: I can't make much sense of that, it looks like a transient error07:29
pittiLaney: (worker-9 shouldn't be restarted, as that was my manual one and it tends to hit the quota, but the other one should be)07:32
Laneyhey pitti08:08
Laneydo they exit on that kind of error?08:08
Laneyi.e. just start a new instance manually?08:09
pittiLaney: yes; I have a couple of retries in the code, but not for this kind of failed swift login yet08:10
pittiLaney: you see which worker crashed?08:10
pittiLaney: (grep -r Traceback log)08:10
Laneypitti: Yeah, I did "tail *.log" to see the exception08:10
pittiah, good08:11
pittiLaney: so you can just start a new one like launch-workers would:08:11
pittiautopkgtest-cloud/worker/worker --config worker.conf > log/worker-2.txt 2>&1 &08:11
pittiLaney: again, sorry for the bare-bones handling, but I want to see what it's crashing on before adding lots of (possibly endless-loopy-) auto-retries08:12
Laneypitti: no worries - seems to be running now08:13
pittiLaney: filed as bug 147472908:13
ubottubug 1474729 in Auto Package Testing "worker failed on transient swift login exception" [Medium,Triaged] https://launchpad.net/bugs/147472908:13
pittiLaney: thanks; back to 8 workers08:14
pittiLaney: I'll send an RT to open up SMTP, so that we can get cron (or other) notification mails08:16
Laneypitti: good idea - can you rig it up so the workers mail when they bail out?08:32
pittiLaney: yes, that was the intent08:32
Laneyack08:33
pittiLaney: tracked as bug 147473408:33
ubottubug 1474734 in Auto Package Testing "Robustify against transient worker failures" [Medium,Triaged] https://launchpad.net/bugs/147473408:33
pittiLaney: if you encounter bugs, please keep filing them against auto-package-testing08:34
pragomerDid remastering of ubuntu. For beeing able to use wireshark as non-root, I use this http://pastebin.com/CguX7sik    as an init-script. The script is under /usr/share/initramfs-tools/scripts/init-bottom/ , but it has no effect. When executing the script manually in live-system, it works.. but does not automatically. any ideas?08:44
cjwatsonpragomer: I did specifically say casper-bottom08:45
cjwatsonAlso it would need to chroot08:45
cjwatsonLook at the other casper-bottom scripts for patterns to follow08:46
cjwatsonBut basically you'll need "chroot /root" before each of those lines08:46
pragomerhi.. I tried casper-bottom, did not work. thats why I took the latest stage (according to manpage of initramfs-tools last is init-bottom)08:46
pragomerits an init script.. so I do not need any chroot, right?08:46
cjwatsonpragomer: No, wrong :)08:47
cjwatsonIt's not an init script08:47
cjwatsonYou fixed it in the wrong way by moving it out of casper-bottom to init-bottom, and the stuff in init-bottom is NOT init scripts08:47
cjwatsonMove it back to casper-bottom and add the "chroot /root" bits08:47
cjwatsonAnd what's its file name?08:48
pragomerplease look. I use it like that: http://pastebin.com/pVamXHwZ08:48
cjwatson27, OK08:48
cjwatsonBut please listen to me otherwise08:48
pragomerok.. putting it back to casper-bottom08:48
cjwatsonI'd also suggest making it 27wireshark rather than 27-wireshark - none of the other files there have that dash08:49
cjwatsonThe reason to be picky about it being in casper-bottom is that if you put it there then you can clean up your stuff by making it be in a package that ships the file there08:50
cjwatsonAnd then that package is harmless when installed on non-live systems08:50
cjwatsonSince casper-bottom is only used on live systems08:50
cjwatsonAnyway, in either case, all of the stuff in initramfs-tools scripts is run in the initramfs context, with the real root filesystem on /root at that point08:51
pragomerok.. please wait.. I am trying it08:52
dokoLaney, https://launchpad.net/~ci-train-ppa-service/+archive/ubuntu/landing-016/+build/7654349  could you fix this and upload to the silo?08:53
pragomercjwatson: so you mean I have to put an chroot /root in front of every line of the "27wireshark" script?08:53
cjwatsonpragomer: yes, because all of those commands must be executed in the real root filesystem08:54
pragomercjwatson: oh.. learned something.. I thought that at this stage "I would be in the real system"08:54
cjwatsonpragomer: also, pretty sure you mean addgroup --system not addgroup -system08:54
cjwatsonpragomer: you are not, no08:54
pragomercjwatson: but I works with only "- system".. becaus the script as it works (when executing it manually)08:55
cjwatsonpragomer: don't you prefer to follow the documented correct form?08:55
pragomersure :-)08:55
cjwatsonIf -system works, you are lucky, but have no right to expect to remain lucky08:55
pragomerok.. remastering runs.. have to be 30min afk.. reporting to you later . thank you so much until here..08:56
Laneydoko: yes, but not immediately - could you file a bug in debian too please?08:59
dokoLaney, sure.08:59
=== greyback__ is now known as greyback
pragomercjwatson: you said these scripts in casper-bottom are no "init-scripts".. how should I call them? boot-scripts?09:53
cjwatsonpragomer: initramfs boot scripts09:54
pragomercjwatson: jippie. it worked.. main fault was the chroot I think.. thank you so much for you help09:59
cjwatsoncool09:59
pragomerjust if you want.. another small problem.. when doing the remaster via chroot everything runs automatically to the end, except the question about if wireshark should create this wiresharkgroupe (its dpkg-reconfigure wireshark).. this I always have to accept manually..10:01
pragomerI mean when installing via chroot apt-get install wireshark10:01
cjwatsonpragomer: DEBIAN_FRONTEND=noninteractive, probably10:02
pragomercjwatson: cool.. never heard this.. how do I use this? with apt-get install?10:02
pittijust put it in front of apt-get install, yes10:03
cjwatsonit's an environment variable that controls the operation of debconf.  you'd set it ... that10:03
cjwatsonif you want a non-default answer to the question it asks, you'll need to preseed that, probably using debconf-set-selections10:05
pragomercjwatson: very cool.. thank you so much10:06
pragomercjwatson: sorry.. I used it like that : http://pastebin.com/BSbixgM7   And it did not work. Doing it wrong?10:19
pittipragomer: no, not a separate command -- put it *right in front* of the apt-get, like chroot ... DEBIAN_FRONTEND=noninteractive apt-get10:30
pittiyour's is a no-op10:30
pittiwell, it works if you would add an "export" before it10:30
pitti(seriously, this is really basic shell knowledge..)10:30
pragomeryou are right.. sorry.. I never really needed to export shell environment.. but now I remember.. thank you pitti10:32
cjwatsonIt wouldn't even work with export, since chroot starts a new shell10:34
cjwatsonbut yes, please look up shell syntax before asking10:34
pittiarges: when you said "unblock ddebs.u.c.", you only meant the new/informational cloud test runs, right? (http://autopkgtest.ubuntu.com/packages/c/crash/wily/amd64/)10:42
pittiarges: as the ones on the (still) production infra fail for a different reason (WARNING: /usr/lib/debug/boot/vmlinux-4.0.0-4-generic and /proc/version do not match!)10:42
pittilike in http://d-jenkins.ubuntu-ci:8080/job/wily-adt-crash/12/ARCH=amd64,label=adt/console10:42
pittiarges: looks like some weird parsing error, or perhaps /proc/version has changed with the new kernel or so?10:43
=== MacSlow is now known as MacSlow|lunch
infinitypitti: Eh?  The crash autopkgtest failure is because of the missing ddebs thing I was complaining about.11:17
pittiinfinity: ah, ok11:18
infinitypitti: Installed kernel is -4.7, but ddebs for -4.7 are missing, so it installs -4.611:18
pittiinfinity: it sounded like arges meant the "can't access ddebs.u.c." error which we saw on the cloud tests11:18
pitti(which I'm also fixing)11:18
pittiinfinity: I'm through with the worst britney stuff, will look at kernel ddebs after lunch11:19
infinitypitti: crash also has a bug in its autopkgtest where it fails to check -proposed for ddebs if the installed kernel is from -proposed, but that's not your fault. :P11:19
dokoLaney, http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=79249412:14
ubottuDebian bug 792494 in src:evolution-data-server "evolution-data-server fails to build with GCC 5 from experimental" [Important,Open]12:14
Laneydoko: is it okay to just change the symbols file like that?12:16
Laney(thanks for the bug)12:16
dokoLaney, are the symbols part of the library API?12:17
pitticjwatson, infinity: FYI, the date argument ("today", "yesterday" or "YYYYMMDD" is obsolete now, this just applied to apache-based downloads; I'll drop it for clarity12:17
Laneydoko: I would guess not, seem leaked from icu, but didn't check thoroughly12:18
dokoLaney, have a look if these are weak symbols12:18
Laneydoko: seems so12:21
dokothen you can probably skip these12:21
Laneyis a good patch to add old and new with optional?12:22
dokowouldn't hurt. but if you sync/merge, please update the ci-train ppa as well12:22
Laneyok, will do, waiting for a bugfix before updating to 3.1612:23
=== MacSlow|lunch is now known as MacSlow
=== _salem is now known as salem_
pragomerHi... whats wrong about: for i in $(find . -type f); do ls -l "$i"; done     Has problems with "space character"12:49
=== Mirv_ is now known as Mirv
TJ-pragomer: "find . -type f -ls"12:56
TJ-pragomer: What you currently do is assign the space-separated output of the find command to i, so any files with spaces in their paths will get split up in different iterations of i12:57
cjwatsonAnd if you're doing something more complicated than ls, then either use -print0 | xargs -0 or use one of the -exec variants (preferably -exec command {} + or -execdir command {} +)12:59
mdeslaurslangasek: patch for sbsigntool in bug 147454113:02
ubottubug 1474541 in sbsigntool (Ubuntu Wily) "sbsigntool broken by update to openssl 1.0.2c" [High,New] https://launchpad.net/bugs/147454113:02
pragomerTJ-: Cant I get the complete folder path - included space characters - into $i ??13:13
pragomerprint0 | xargs -0 is great I know... but I need the file-path in a variable to specifiy an output path13:15
dokoTJ-, do you still want to backport openjdk-8?13:16
pitticjwatson, infinity: bazinga! http://bazaar.launchpad.net/~ubuntu-archive/ddeb-retriever/trunk/revision/15913:16
pittithe old test saw that -4.7 was already there, but failed to realize that it only had armhf/i386/ppc binaries; it didn't look at the ddeb's architecture13:17
pittiso anything which would build several hours before or after other architectures would be affected13:18
pittiI'll re-run the thing from Mid-April on (thanks Launchpad for keepign all ddebs!)13:18
pittiI also committed http://bazaar.launchpad.net/~ubuntu-archive/ddeb-retriever/trunk/revision/160 to make this a bit less painful exercise13:18
cjwatsonpragomer: find -print0 gives you the full path from the start directory, just as your earlier broken command was trying to do13:19
infinitypitti: <3!13:19
pittihttp://ddebs.ubuntu.com/pool/main/l/linux/ has the ddebs now, just not indexed yet (as I was running with --download-only)13:19
infinitypitti: I'm going to quit ~we-love-pitti, just so I can rejoin.13:20
pittilol13:20
cjwatsonpragomer: there are ways to get it into a variable for further processing, but doing it safely in the presence of unusual characters in file names requires very careful use of shell and if you're having difficulty with setting environment variables correctly then I think that would be a bit much!  You might be better off with a more powerful language at this point.13:22
cjwatsonpitti: ah, excellent, thanks for that!13:23
cjwatsonmy bad13:23
cjwatsonpitti: 160> you'll lose out on Pending, but maybe that's OK as you'll probably get them later anyway13:24
pragomercjwatson: find . -type f | while read i; do vcs "$i" -n 4 -o "$i.png"; done13:24
pragomerfind . -type f | while read i; do vcs "$i" -n 4 -o "$i.png"; done13:24
cjwatsonand you can't match those directly either13:24
pitticjwatson: yeah, that's what I thought; I just saw an awful lot of Deleted (from -proposed) and superseded scroll by13:24
pragomervcs is a script to get images out of videos... and it expects -o output path13:25
pitticjwatson: so I don't think it's a net delay, as we match them against Packages.gz anyway13:25
pragomerin this case it only handles the first file found13:25
pitticjwatson: if someone wants to use that without apt, they can just as well grab the ddeb directly from LP13:25
infinitypragomer: find | while read; seems to work for me?13:28
cjwatsonpragomer: find . -type f -print0 | xargs -0r -I{} vcs {} -n 4 -o {}.png13:29
infinityThat's more foolproof, sure.13:29
infinityBut while read is working fine too.13:29
infinity$ find . -type f | while read i; do echo "$i"; done13:29
infinity./bar baz/file213:29
infinity./foo/file113:29
cjwatsonwhile read works as long as your filenames do not contain newlines, indeed.13:29
* infinity nods.13:29
cjwatsonWhich is pretty rare and breaks lots of other stuff, but you never know.  I prefer to write code that won't break even in that case, if I can.13:30
cjwatsonpitti: Right13:30
infinityNewlines in filenames really should have been banned by POSIX.  Such pure evil.13:30
cjwatsonAlso, | while read can be useful, but it also has pretty surprising behaviour with variables set inside the loop13:31
cjwatsonOh, while I'm here, this works fine too:   find -type f -execdir vcs '{}' -n 4 -o '{}.png' \;13:33
pragomercjwatson: thank you so much: worked fine with xargs.. didn know how to get the input in the variable {}13:35
infinitycjwatson: execdir.  That's a new one to me.  I assume {} is basedir()ed, despite the manpage leaving that detail out? :P13:36
infinityErr, basename()d.13:36
pragomerthank you @LL !!13:36
cjwatsoninfinity: Yes.  The info docs clarify, although even then only if you read the section on -exec as well.13:37
infinitycjwatson: Well, that's super handy.  Now to figure out how to etch that in a bit of brain mush that survives more than a few minutes, so I never use -exec again.13:38
caribouQuestion regarding rsyslog merge : in the pre-merge version (7.4.4) there is no test being run on package build13:40
caribouin the Debian version (8.9.0) tests are introduced13:40
cariboubut a few tests, according to the upstream dev, may be racy and cause false negative.13:41
caribouThere is a few I hit regularly when I build but most of them run fine.13:41
infinitycaribou: If it turns out that those racy tests are problematic, disable just the broken ones?13:41
caribouinfinity: that's the question I was about to ask13:41
infinitycaribou: Really, if a test is known-racy, it's not much of a test at all, and upstream should be skipping them until they're fixed. :/13:41
infinitycaribou: But we can skip them if they won't.13:42
caribouinfinity: well, according to rainer, they only work in very specific controlled environment13:42
caribouinfinity: ok, I'll disable them. Thanks!13:42
infinitycaribou: Anyhow, baby and bathwater, la la la, don't disable the whole testuite just cause a few tests are crap, figure out how to disable the crap ones.13:42
caribouindeed, especially since there are quite a bunch of them that run fine13:43
infinitycaribou: If upstream knows what these controlled environments are, they should be checking for them, and skipping the tests if they're not in said env.  Many packages conditionally run some tests that way.13:43
cariboutrue13:43
infinityie: python skipping a whackload of tests of there's no network, coreutils skipping some tests if it doesn't find certain types of files (my favoutite one being "found no files in /tmp that aren't owned by you -- skipping")13:44
cariboubtw, https://merges.ubuntu.com/main.html seems to be borked13:44
=== __bjf is now known as bjf
cjwatson[Wed Jul 15 13:48:21 2015] [error] [client 10.172.192.14] OSError: [Errno 13] Permission denied: '/var/www/.launchpadlib'13:48
cjwatsonsigh13:48
* cjwatson goes to fix13:48
cjwatsoncaribou: fixed, thanks13:52
cariboucjwatson: thank to you !13:52
TJ-doko: openjdk-8 has been working fine for me so far but I'm not familiar with any test-suite that should be run through to detect regressions against existing packages14:00
=== bjf is now known as _jfb
=== _jfb is now known as _fjb
slangasekmdeslaur: thanks!15:44
infinitypitti: That ddeb-retriever is taking an impressive amount of time. :)15:58
dokoMirv, looks like slangasek uploaded some more qt packages to the silo. do you consider these part of qt5?16:05
dokoOn 7 July, Matthias mentioned that he's also planning the GCC 5 transition,16:18
dokoand we don't want to do both transitions at the same time, so Python 3.5 is up16:18
dokofirst.16:18
dokobarry, slangasek: I didn't say that python3.5 is first ... this is cowboying ...16:18
dokowe'll do the GCC change around July 30, so maybe add it as a supported version before, but don't change the default16:19
slangasekdoko: the mail says specifically that he's uploading today to add python3.5 as supported, not default16:29
barrydoko, slangasek right.  only supported as of today16:34
pittiinfinity: yeah, mopping up all ddebs since April :) I suppose that'll take a full day or so17:01
pittiinfinity: I thought we should bite the bullet, as this probably affects a lot more debs17:01
* pitti -> badminton, cu tomorrow17:01
slangasektyhicks: hey, the bug log on bug #1430557 says you were working on this issue... are you still working on it?  the current behavior is truly hateful :)17:19
ubottubug 1430557 in schroot (Ubuntu) "sbuild / schroot unmounted encrypted home directory" [High,Triaged] https://launchpad.net/bugs/143055717:19
tyhicksslangasek: I was working on a different bug, which may be a dupe of that bug17:31
tyhickslet me get "my" bug17:31
tyhicksslangasek: https://launchpad.net/bugs/142726417:32
ubottuLaunchpad bug 1427264 in schroot (Ubuntu) "using ecryptfs, creating frameworks fail to bind mount issues" [High,In progress]17:32
tyhicksslangasek: I submitted a patch to upstream but they haven't commented17:33
tyhicksslangasek: I'll poke the bug again17:33
slangasekok17:33
dokotjaalton, could you have a look at https://launchpad.net/~ci-train-ppa-service/+archive/ubuntu/landing-016/+sourcepub/5214294/+listing-archive-extra ?18:05
dokotjaalton, nm, found it18:34
=== davmor2_ is now known as davmor2
ari-tczewbdmurray: thank you for your efforts for making Merge-o-Matic better! \o/20:34
ari-tczewbdmurray: could you in a bit free time take a look on bug 681375 ? I guess it'd easy to fix for you :-)20:38
ubottubug 681375 in Merge-o-Matic "Adding unnecessary blank line at the end of debian/changelog" [Undecided,New] https://launchpad.net/bugs/68137520:38
pittislangasek: FYI, I set up a second autopkgtest worker on the other scalingstack region, so I now have 20 instances max21:14
pittislangasek: with that the performance looks like roughly on par with the current infrastructure21:15
pittislangasek: counting the number of "in progress" on http://people.canonical.com/~ubuntu-archive/proposed-migration/update_excuses.html (also on trusty/vivid) it even seems to be a tad faster21:15
pittislangasek: so, yay :)21:16
slangasekpitti: nice!  do we have the capacity on scalingstack today to cut over?21:21
pittislangasek: given the above, I'd say yes21:21
slangasekpitti: unless the launchpad team is going to come yell at you for using 20 instances? :)21:22
pittislangasek: it still needs some handholding and analyzing the tmpfails, but yesterday and today I was doing mostly just that21:22
pittislangasek: yeah, I still hope I'm not stepping on wgrant's feet with that, I asked on the RTs several times21:22
pittislangasek: anyway, IS said they are going to add a new beefy box to each of the regions RSN, so we can get some more power21:23
pittislangasek: e. g. today with doko's python3.5 enablement I'm using the full steam; but on most days it's not running on max capacity21:23
pittislangasek: so, I think I'll continue to sort out problems this week, Laney volunteered to keep an eye on it next week while I'm on holiday21:24
pittislangasek: and after that I think we should be good to switch over21:24
pittislangasek: still need to teach britney to take these results into account instead of the old adt-britney ones of course, but that should be easy21:24
slangasekpitti: awesome!21:24
pittislangasek: I sent an RT for opening access to armhf and ppc64el boxes FYI, let's see how that goes21:25
pittiwe can use that as an example of how we're going to AMQPify and de-jenkins-ify e. g. boottest, and add real iron testing to this21:25
pittiI'd really like to get rid of this 'orrible duplication of boottest.py in britney21:25
pittiPSA: taking down autopkgtest.ubuntu.com and re-deploying from scratch21:26
pittibecause I can :)21:26
pitti(I simplified/moved some bits, want to test the charm)21:26
slangasekpitti: ok, you've decided it's worth wiring this up to the existing armhf and ppc64el boxes, rather than waiting for scalingstack on those?21:27
pittislangasek: well, it's not much work really, and having a worker which talks to LXC or e. g. adb which isn't in the cloud is useful IMHO21:28
slangasekok21:28
pittiif it's not too much trouble for IS to open up the firewall holes, that is21:28
pittiI explained the general intent, and hope we can discuss this now21:29
pittiso that when we need it for e. g. boot test, or real iron testing of snappy or whatnot, we've been through that procedure once21:29
pittihah, and http://autopkgtest.ubuntu.com/ is back (syncing results in a few mins)21:32
* pitti fell in love with juju21:32
cjwatsonslangasek: I don't think our quotas are going to magically deflate or anything just because pitti's using his quota - our number of virt builders doesn't decrease.  There might be overcommit, I don't know21:39
cjwatsonslangasek: but I have a ticket in for turning brownie and comet into scalingstack compute nodes, and if IS are planning to add another couple, that would be great21:41
pitticjwatson: I don't know whether there's overcommit, but given that both buildd and test VM workloads tend to come in peaks, it would make sense to have it21:41
pittiI added some logic to retry after 5 mins if nova fails due to hitting the limit21:42
cjwatsonpitti: I assume that the new beefy boxes are independent of the existing buildds we're reusing, since as far as I know all the ex-buildds are going into lgw01 (otherwise they'd have to be physically moved)21:42
cjwatsonpitti: yeah.  shouldn't be too much of a problem21:42
pitticjwatson: ok; please let me know if it does impact you, then I'll dial it back a bit21:42
cjwatsonpitti: TBH, our metrics aren't great, we might not notice for quite a while *cough*21:42
pittiATM I'm using 16 instances (8 on each region) max in parallel (I didn't want to max it out yet)21:42
cjwatsonI think we'd basically just start caring if the virt queue started growing21:43
pitticjwatson: well, do you get some error if nova boot fails with a quota issue?21:43
cjwatsonpitti: it would probably cause builders to fail to reset.  that does happen occasionally21:43
cjwatsonI rather suspect that it would be a ridiculously opaque failure mode of some kind21:44
cjwatsonaren't the quotas in terms of number of instances though?21:45
cjwatsonwe don't scale our number of instances dynamically, any adjustments there would be done by IS21:46
pitticjwatson: there's quotas for #instances, #cpus, #mem, and #disk, all independelty21:47
pitticjwatson: e. g. I hit a quota with my 8th instance when I allocate 3 m1.large21:47
pitti(some tests need an m1.large, most use m1.small)21:47
pitticjwatson: "nova absolute-limits" FYI21:48
cjwatsonpitti: our use is static though, we just reboot lots (effectively)21:51
pitticjwatson: ah, that would help; so I can't "steal" capacity from buildds then21:51
pittiI keep creating and destroying images21:52
pittierr, instances21:52
* pitti waves good night21:54
=== _fjb is now known as bjf
bdmurraybarry: does python-apt need to be rebuilt with python3.5?22:31
=== salem_ is now known as _salem
=== mbiebl_ is now known as mbiebl

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!