/srv/irclogs.ubuntu.com/2019/02/07/#ubuntu-server.txt

=== TheHonorableKitt is now known as THKitten
cpaelzerjamespage: what is the usual acceptance time for patches on OVS?07:17
cpaelzerjamespage: I now have two acks and it is up quite some days - I just want to set my expectations right if we will get that into 2.11 as well or at least into master until we upload final 2.1107:18
ducasseon bionic, if i add -l to libvirtd_opts in /etc/default/libvirtd (as the file says to do), systemctl fails to restart/start libvirtd.service with 'respawning too fast'. should i file a bug?07:25
ducassei've had someone else confirm this, so it's not a local issue.07:29
cpaelzerducasse: let me take a look first07:30
ducassesure thing07:31
cpaelzerducasse: I'll test on disco, what release are you on so that I take a look there as well?07:32
ducassebionic07:33
cpaelzerducasse: once you enable listening on tcp you also need certificates - the issue after enabling -l is "Cannot read CA certificate '/etc/pki/CA/cacert.pem': No such file or directory"07:39
cpaelzeryou can use the package ssl-cert to create one or take a look at certbot/letsencrypt (for a real cert) I think07:40
ducasseoh, i must have missed that when i looked at the log. perhaps there should be a note on this in /etc/default/libvirtd?07:40
cpaelzerIMHO it is not really abug, if anything a note there would be nice07:41
lordievaderGood morning07:41
ducasseyeah, i've already got a cert i can use07:41
cpaelzerhi lordievader07:41
ducassemorning lordievader07:41
lordievaderHey cpaelzer , ducasse07:41
lordievaderHow are you doing?07:41
ducassebut thanks for taking a look, cpaelzer07:41
cpaelzerwell I'm not done07:42
cpaelzergive it a try, but on bionic the error is less obvious - as you say when you checked the log07:42
cpaelzerit is the same issue, even though the error looks slightly different and is not yet auto-marks as crit by journal07:43
cpaelzererror : virNetTLSContextCheckCertFile:120 : Cannot read CA certificate '/etc/pki/CA/cacert.pem': No such file or directory07:43
cpaelzerducasse: so yes, using a cert shoul help you07:43
Haugli92Im having some problems with pptp-linux on 16.04. When using "poff", routes doesn't seems to reset correctly. Any idea how to fix this? I can always run "networking restart", but doesn't like it :P Route log: https://pastebin.com/eB4N3RV507:45
cpaelzerducasse: the config is in debian/libvirt-daemon-system.libvirtd.default (in packaging) and shared with Debian - I'd not want to add Delta jsut for that as we share the issue07:45
cpaelzerducasse: if you report a bug about adding a hint in the conffile (which is fine) would you report to Debian as well - when you open an ubuntu bug state the Debian bug number so we can track it from LP07:46
cpaelzerducasse: or to make things more easy you can only open a Debian bug and let me know the number07:46
ducassei could add a debian bug, ask for a brief note to be added. it wouldn't take many words07:46
cpaelzerducasse: excactly07:46
ducasseok, i'll do that later today, i'll update you with bug number07:47
cpaelzerthanks ducasse07:52
ducassenp, thanks for the help07:53
cpaelzerbtw man libvirtd will list all the certs/keys involved07:54
cpaelzerso that you know all the paths at once07:55
cpaelzerducasse: for a qucik not recommended way out you could always set listen_tls = 0  listen_tcp = 1  in /etc/libvirt/libvirtd.conf07:56
cpaelzerthat will make tcp listening "work" but well without security it isn't as nice :-)07:57
cpaelzerjust saying, in case someone reads this and just wants it to listen on the network without the need for certs07:57
ducasseyeah, i think i'll use a cert (even though there's nothing to target on this system)08:00
patstomsmaybe someone is familiar with intel_pstate and would know why ubuntu server instalation could not use it by default for xenon E5 processor?08:11
=== lotuspsychje_ is now known as lotuspsychje
jamespagecpaelzer: I dug into the ovs build failure and can reproduce it against the bionic/stein UCA09:59
jamespagethe -I/usr/include/dpdk gets a trailing , so none of the dpdk related imports work09:59
cpaelzera trailing colon - hmm10:02
cpaelzerwhy did that work for me10:02
cpaelzerjamespage: can you log onto any of those builds and check what pkg-config returns10:02
cpaelzerto see if it is in broken in the pkg-config of dpdk or somewhere else10:03
jamespagecpaelzer: pkg-config return looks fine10:03
cpaelzerhmm10:03
cpaelzerok10:03
jamespageone sec - its just running tests...10:03
cpaelzerjamespage: so what yould be the difference to my build that I linked a few days ago?10:03
cpaelzery->c10:03
jamespage"-include rte_config.h -march=corei7 -I/usr/include/dpdk/../x86_64-linux-gnu/dpdk -I/usr/include/dpdk"10:03
cpaelzerthe march is a ugly beast, but I discussed it with many people there seems to be no way around - I don't see your colon thou10:04
jamespagecpaelzer: I think if I tweak one of the patches like this - http://paste.ubuntu.com/p/QhNtDJWQqp/10:05
jamespageit resolves the issue10:05
cpaelzerjamespage: that seems to make no sense to me yet10:06
cpaelzerthat colon is a colon for the autoconf handling10:06
cpaelzerand it seperates differnt actions10:06
cpaelzerone is the assign of PDDK_INCLUDE and the second one is the assign of DPDK_LIB10:07
jamespagecpaelzer: comma needs to be outside of [] ?10:08
cpaelzerno10:08
jamespagehttps://www.irccloud.com/pastebin/KSuoLJlt/10:08
cpaelzerthis is the definition PKG_CHECK_MODULES(prefix, list-of-modules, action-if-found, action-if-not-found)10:08
cpaelzerand in our case we are reaching the path of action-if-found10:08
cpaelzerwhich we set as10:09
cpaelzer[DPDK_INCLUDE="$DPDK_CFLAGS", DPDK_LIB="$DPDK_LIBS"]10:09
cpaelzerthe colon inside of this separates multiple elements of that action10:09
cpaelzerat least I thought so10:09
jamespagethat evaluates to10:09
jamespageDPDK_INCLUDE="-I/usr/local/include/dpdk -I/usr/include/dpdk", DPDK_LIB="-ldpdk"10:10
jamespagein the script10:10
cpaelzerthat is wrong, so much I agree10:10
cpaelzerbut it should be two separate actions10:10
cpaelzerand btw - if you are in the path that you mentioned then you are wrong10:10
cpaelzerbecause that is the "no pkg config found path"10:10
cpaelzeryou should be hitting the one above it10:10
cpaelzerthe one I listed 12 lines above here10:11
jamespageyes but even that will append the ,10:11
jamespage[DPDK_INCLUDE="$DPDK_CFLAGS", DPDK_LIB="$DPDK_LIBS"]10:11
cpaelzeryes that one should be yours10:11
cpaelzerhttps://stackoverflow.com/questions/12735432/how-to-pack-multiple-statements says newlines instead of commas10:15
cpaelzerarr I'd like to find the right official definition to be sure10:15
jamespagehttps://www.irccloud.com/pastebin/vyQ1pt9I/10:15
cpaelzerwell that matches what I had above10:16
jamespagecpaelzer: re-confirmed - the patch as is generates10:16
jamespage        DPDK_INCLUDE="$DPDK_CFLAGS", DPDK_LIB="$DPDK_LIBS"10:16
jamespageand then the checks for features fail as we get the trailing comma10:16
cpaelzerI mean the definition for "one" of those10:16
cpaelzeryeah that would be wrong for sure then10:16
cpaelzer 10:16
cpaelzermaybe more reasbale with newlines10:18
cpaelzerlet me try10:18
jamespagetrying that now10:18
cpaelzerjamespage: http://paste.ubuntu.com/p/52S6ftNZ2g/10:19
cpaelzerwould that work for you10:19
jamespageit appears to be10:22
cpaelzerI still don't get why it worked for me and the OVS travis Ci then10:24
cpaelzerI have prepared a mail to the discussion of the patch upstream10:24
cpaelzerjamespage: please give me a ping once you can confirm that this resolves your build10:24
cpaelzerI'll hit send then10:24
cpaelzerI should see the result of that in my build log right ...10:25
cpaelzerjamespage: I mean on the disco build of the same I literally run traffic over OVS-dpdk ports so that must have been working10:30
jamespagecpaelzer: its certainly odd10:31
cpaelzerjamespage: here a gcc line of my 18.04 backport PPA10:31
cpaelzerbuilding OVS with dpdk enabled against 18.1110:31
cpaelzergcc -DHAVE_CONFIG_H -I. -I.. -I ../include -I ./include -I ../lib -I ./lib -Wdate-time -D_FORTIFY_SOURCE=2 -Wstrict-prototypes -Wall -Wextra -Wno-sign-compare -Wpointer-arith -Wformat -Wformat-security -Wswitch-enum -Wunused-parameter -Wbad-function-cast -Wcast-align -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-field-initializers -fno-strict-aliasing -Wswitch-bool -Wlogical-not-parentheses -Wsizeof-array-10:31
cpaelzerargument -Wbool-compare -Wshift-negative-value -Wduplicated-cond -Wshadow -mssse3 -include rte_config.h -march=corei7 -I/usr/include/dpdk/../x86_64-linux-gnu/dpdk -I/usr/include/dpdk -I/usr/include/libnl3, -D_FILE_OFFSET_BITS=64 -g -O2 "-fdebug-prefix-map=/<<PKGBUILDDIR>>=." -fstack-protector-strong -Wformat -Werror=format-security -MT lib/odp-util.lo -MD -MP -MF lib/.deps/odp-util.Tpo -c ../lib/odp-util.c -o lib/odp-util.o10:31
cpaelzercould you check your build for the same line and post it10:31
cpaelzerI'd be eager to see the difference10:32
cpaelzeras there would be the colon that you assume is rendered into that string right?10:32
cpaelzerwell you might not get that far as your configure breaks already :-/10:32
cpaelzerjamespage: ^^10:32
jamespagecpaelzer: odd - you still have a trailing , - its just after libnl3?10:33
cpaelzerhmm yeah - thanks for spotting10:35
cpaelzerbut it is not breaking it oO10:35
cpaelzerjamespage: once your build is complete using the newlines please let me know how this line looks like then10:35
jamespagecpaelzer: yep doing that now - testing bionic and disco10:36
jamespagecpaelzer: https://launchpad.net/~james-page/+archive/ubuntu/stein LGTM10:55
cpaelzerI must admit I don't understand it11:00
cpaelzerbut let me send the mail to ovs-dev11:00
cpaelzersent, you are on CC in cae there are specific questions about you encountering the issue at first11:02
jamespageI think so11:03
jamespageoh I am yes!"11:03
jamespagedoh,11:03
cpaelzeris that the trailing comma11:03
cpaelzerafter doh11:03
jamespage😜11:04
cpaelzerjamespage: we have an ack and prior art on the newline suggestion11:38
cpaelzerand bluca is really good at autoconf11:38
cpaelzerI'll respin my patch for OVS-dev11:38
jamespagegreat11:45
cpaelzerjamespage: sent11:46
maeudHi, can anyone help me with an issue doing a UEFI install on a Hyper-V gen 2 VM?12:36
maeudI've got a preseed working fine for Bionic, I'm trying to do one for Xenial12:36
maeudThe install completes and the machine shuts down12:36
maeudbut then I can't boot into it, unless I go to recovery, type exit and it puts me into it properly12:36
maeudPreseed, images, explanation I've wrote up here: https://pastebin.com/raw/YbRD73j412:36
leftyfbwhy do you need/want UEFI in a VM?12:44
maeudI don't need/want it, but with Gen 2 you get access to better devices12:46
maeudIt works for Bionic, just not Xenial12:47
maeudnot sure how to troubleshoot this any further12:48
maeudalso leftyfb, this is in test for rolling out to our users, that's the primary reason for running it in Hyper-V12:51
maeudIt will be going to bare metal when it works12:52
maeudSo I'd like to have UEFI/secure boot working for that12:53
boblamontHi, I've got a Linode VPS on which I'm running Ubunutu. I run a web server, but I handle mail on a separate shared hosting account. I have a wordpress plugin that I'd like to be able to send mail. I found this guide https://www.linode.com/docs/email/postfix/postfix-smtp-debian7/ is that the best way to set things up?12:55
blackflowboblamont: you don't need a full MTA if all you want is to use an external one. take a look at dma (Dragonfly Mail Agent)12:59
blackflow!info dma12:59
ubottudma (source: dma): lightweight mail transport agent. In component universe, is optional. Version 0.11-1build1 (bionic), package size 48 kB, installed size 148 kB12:59
tomreynthere's also ssmtp, nullmailer and a couple others, i think12:59
blackflowboblamont: also note that wordpress can probably be configured to use an external MTA directly via some smtp lib12:59
blackflowssmtp is imho abandonware at this point13:00
boblamontthanks, I wondered if that was possible... I want to install and configure as little as possible since it's just to send emails out of a single plugin13:00
tomreynmany php web apps can do smtp and smtp-auth, and hopefully also tls nowadays.13:01
blackflowpersonally I always prefer a locally available mail transport so it can also send mail for cron etc, or locally deliver mail to root (eg. some problem reports). but if you don't need/want that, then definitely use a smtp lib based WP plugin to talk to the external MTA directly13:02
coreycbjamespage: well i think we're mostly narrowed down to neutron-ish backport failures for the stein cloud archive. i'll handle the vitrageclient one13:21
coreycbmostly just waiting on os-key i think for neutron13:21
boblamontthat was easy, a plugin, a wizard and a successfully received test email, thanks for pointing me in the right direction!13:31
tobias-urdincoreycb: hello o/ are you around?13:41
tobias-urdini took some time to struggle trough ubuntu 18.04 + py3 + stein in puppet openstack just one thing left13:42
tobias-urdinhttp://paste.openstack.org/show/744673/13:42
tobias-urdinpython3-websockify is not installed for nova-novncproxy13:42
coreycbtobias-urdin: we've historically had issues with getting websockify into main due to security concerns so we can't add it to nova Depends. we should have it in nova Suggests though and that is a bug.14:54
coreycbtobias-urdin: oh maybe we're good to go now. bug 1108935. jamespage do you agree we can add websockify to nova Depends now?14:56
ubottubug 1108935 in spice-html5 (Ubuntu) "[MIR] websockify, spice-html5" [High,Confirmed] https://launchpad.net/bugs/110893514:56
jamespagecoreycb: +114:59
jamespagecoreycb: tbh that should have been on the depends anyway, but just unseeded at the nova-novncproxy level15:00
coreycbjamespage: ok cool. i'll add it.15:00
coreycbtobias-urdin: i'm adding that dependency and you'll see it soon. thanks as always for the feedback. :)15:01
gislavedHi guys, my routes are not added using netplan... any idea ?15:33
gislavedlotuspsychje ok :P15:33
lordcirth__gislaved, can you pastebin your netplan config?15:34
gislavedlordcirth__ not really as I'm on KVM but I use the netplan examples15:34
tewardwithout seeing your config it's hard to give guidance15:34
lordcirth__gislaved, cat /etc/netplan/* | nc termbin.com 999915:35
lordcirth__The link should be short enough to retype15:35
gislavedI know but it's more like when I get the same info from DHCP and set it staticly should that work ? it's a VPS and it doesn't surprise me as they don't allow static IP set15:35
gislavedlordcirth__ how would that be possible when I don't have a route ;)15:36
tewardgislaved: i'd use DHCP at least to get a route in the interim15:36
tewardthen share the configs you're using.  It's possible the routes you think are being added *aren't*15:36
tewardDHCP does some weird things like that :P15:36
gislavedyes it does as it's a /32 ip and the GW is a /24 lower :S15:37
gislavedon dhcp15:37
tewardgislaved: then your netmask needs to be /2415:37
tewardnot /3215:37
tobias-urdincoreycb: thanks :)15:37
tewardfor your setup.  it won't allocate the entire range but it DOES state how to actually hand things around15:37
tewardA /32 IP cant reach anything outside it, the netmask is actually /24 typically15:37
gislavedtewaroh man that I ddin't try that15:38
tewardor /26 or /18 or {INSERT CIDR RANGE HERE} depending on how they split things around15:38
gislavedno but why does DHCP the /32 ?15:38
tewardgislaved: i had the same headaches at times setting IPv6 up on a VPS, where the GW was in the /48 above a /6415:38
gislavedas it's single assigned ?15:38
tewardgislaved: no idea, but if you're static-ing it use /2415:38
gislavedteward ok I feel less stipud :P15:38
tewardgislaved: To be fair15:38
gislavedstupid, I hate these VPS providers15:38
tewardI don't know15:38
tewardbut the consideration point is this:15:38
gislavedtell me15:39
tewardI have a VPS assigned 1.2.3.4.  The gateway is 1.2.3.0.  The subnet for the IP address on the *server* may be a /32 single assigned IP address, but the gateway sits in the /24 subnet, so you have to adjust the subnet to be a /24 on the IP itself15:39
tewardthis is just how 'subnetting' works15:39
gislavednow it still doesn't apply my nameservers, I need to find out why15:39
gislavedyap15:39
tewardgislaved: you should probably focus on *getting the thing back on the net* first :P15:39
gislavedit's on the net15:40
gislavedoh no not yet15:40
gislavedsorry my misstake :)  I turned on dhcp but on a /24 my route is there15:41
tewardwell again as i said i'd need to see the configs15:43
tewardeven if you just take a picture of what you see on your screen15:43
tewardand upload that picture to an image hosting site :P15:43
tewardthe problem is without *seeing* your configs it's impossible to know what's going on15:44
tewardand I'm sure lordcirth__ and others will say the same :p15:44
gislavedI need to know the subnet of the vps15:45
gislavedand gw15:45
gislavedgw is what I know but still15:45
tewardyou can probably get the subnet from `ip -4 addr list` after DHCP15:45
tewardbut i'd probably reboot the VPS to make it 'refresh' its network configs cleanly15:45
tewardso we don't have any cruft lying around in there15:46
tewardand stop trying to apply your stuff temporarily15:46
tewardstart with "working" then we'll get details.15:46
gislavednah /32 for dhcp15:47
tewardi can still figure out the stuff from once it's working, because I know things15:51
tewardI KNOW THINGS!15:51
tewardbut still15:51
tewardCOFFEE TIME, back in a bit15:51
tewardrbasak: may I add to the trello board adding the 3rd party plugin to the nginx stuff?  As a to-do item for me because GeoIP is now paid-only15:51
teward(because of MaxMind)15:51
tewardrbasak: it's got some funky chaos in there for building modules that I have to debug first, so I need a reminder item :P15:51
tobias-urdincoreycb: do you know if swift packages is py3 yet? seems like it's running with py2.715:51
teward(did it anyways rbasak xD)15:54
* genii 's ears perk up momentarily at the mention of coffee15:54
coreycbtobias-urdin: it's py2. upstream is py2 only so far.15:54
coreycbunfortunately15:54
tobias-urdincoreycb: ImportError: No module named keystonemiddleware.auth_token15:55
tobias-urdinmaybe it doesn't depend on the keystonemiddleware py2 pkg15:55
rbasakteward: sure, no problem15:56
tewardrbasak: cool.  just as an FYI, if Upstream doesn't move quickly to geoip2 it may end up with a MIR because of GeoIP being pretty important :P15:57
tewardthough come that time we'll have to visit whether we want to adjust -core to actually include the module15:57
tewardbecause as I said, GeoIP is a pretty useful function in the core modules :|15:57
tewardbut that's down the road yet :P15:57
tobias-urdincoreycb: another question, nova packages has never depended explicitly on python-rbd/python-rados/python-ceph right?15:59
smosermwhudson: just fwi, i am really greatful for 'go' snap.16:00
tewardrbasak: saw your response to the backports proposal, i'll review when I get a minute :P16:05
tewardprobably poke Laney too since Laney made a bunch of the suggestions there :16:06
tewardP16:06
tewardbleh stupid keyboard again16:06
rbasakteward: need SRU information in bug 1808882 prior to the upload of the SRU debdiffs please.16:10
ubottubug 1808882 in chkrootkit (Ubuntu Disco) "false positive on tcpd" [Low,Triaged] https://launchpad.net/bugs/180888216:10
tewardrbasak: 1 moment16:10
rbasakThe Disco upload looks good to go16:10
tewardERR:SLOW16:10
tewardmaybe IS should prod the wiki server to speed it up :|16:10
tewardrbasak: added though I'm bouncing around between 10 tasks16:15
tewardso let me know if i missed anything16:15
coreycbtobias-urdin: interesting question re: ceph deps. i don't think they ever have had explict deps on them. we generally only depend on what's in (test-)requirements.txt16:16
rbasakSure, thanks.16:17
tewardwe had a major AD outage that fubar'd all email on the work network so I'm helping to pick up the pieces and make things work again so :|16:18
teward(hence 10 tasks)16:18
coreycbtobias-urdin: did you hit the swift keystonemiddleware error on install?16:18
maeudHi, can anyone help me with an issue doing a UEFI install on a Hyper-V gen 2 VM? I've got a preseed working fine for Bionic, I'm trying to do one for Xenial. The install completes and the machine shuts down but then I can't boot into it, unless I go to recovery, type exit and it puts me into it properly16:21
maeudPreseed, images, explanation I've wrote up here: https://pastebin.com/raw/YbRD73j416:21
maeudI've tried the HWE and GA kernel16:21
tobias-urdincoreycb: swift-proxy does not start because python-keystonemiddleware is not installed, i assume it has worked before because some other package has always installed keystonemiddleware py216:23
tobias-urdinbut now only swift is py2 i think swift itself should depend on that16:23
coreycbtobias-urdin: probably so, have a traceback by any chance? it might be that another pkg needs it b/c i'm not seeing an import other than in tests for swift.16:24
coreycbtobias-urdin: maybe keystone... this is tricky16:25
tobias-urdincoreycb: http://logs.openstack.org/13/635513/1/check/puppet-openstack-integration-5-scenario002-tempest-ubuntu-bionic/2a97889/logs/swift/proxy.txt.gz16:25
tobias-urdinswift can be used without keystone, but with keystone middleware loaded by paste it will fail16:27
coreycbtobias-urdin: thanks. i'll dig in more later but for now we have bug 1815093.16:53
ubottubug 1815093 in swift (Ubuntu) "swift-proxy fails to start on stein - missing python-keystonemiddleware" [Undecided,New] https://launchpad.net/bugs/181509316:53
rbasakteward: mind if I change your bionic SRU version string to 0.52-1ubuntu0.1? 0.52-1ubuntu1 won't cause a technical problem but I prefer making it obvious it's an SRU by using the security team's scheme (which I think we should make more official for SRUs anyway)17:11
rbasakteward: https://launchpadlibrarian.net/408977730/lp1808882-cosmic.debdiff has a spurious duplicate patch I think?17:13
tewardrbasak: wrt string: go ahead17:20
tewardrbasak: yep looks like quilt exploded.  i can fix that in a bit.17:21
tewardthat's not a hard fix :P17:21
tewardrbasak: cosmic/disco had additional patches past 23 which is why it fubar'd did Disco have the same issue?17:22
tewardrbasak: https://launchpadlibrarian.net/410209868/lp1808882-cosmic.debdiff  <-- this should be much cleaner17:24
tewardfor Cosmic17:24
rbasakOK thanks!17:24
tewardrbasak: and regarding version strings, if it's off minorly like that then sure go ahead17:25
tewardsometimes reading through the sec team's version schemes is tricky :P17:25
tewardrbasak: actually17:25
tewardrbasak: if this document is wrong, then you need Security to update it17:25
tewardhttps://wiki.ubuntu.com/SecurityTeam/UpdatePreparation#Update_the_packaging shows:17:25
teward''Previous version''          ''Security update''17:26
teward2.0-2                         2.0-2ubuntu0.117:26
tewardoops multiline paste :|17:26
tewardbut that's why 0.1 was used17:26
tewardrbasak: if *this* is in difference with the sec team version policy then the policy needs updated17:26
tewardcc sarnold ^ because sec team17:26
rbasakI think that document is correct.17:26
rbasakPrevious version was 0.52-1 in one release only.17:27
rbasakSo what would you use?17:27
tewardoh WOW i'm blind17:27
tewardrbasak: E:NOCOFFEE17:27
tewardrbasak: on my side it's 0.1 that patch as 117:27
rbasakNo worries :)17:27
tewardso maybe I uploaded the patch, fixed it, then forgot to reupload :|17:27
teward*derps*17:27
tewardten bucks says dch did it the first time >.>17:27
tewardrbasak: i also misread what yo uwere saying, my bad.17:28
tewardthat's the OTHER problem that lack of sleep causes >.>17:28
tewardrbasak: my apologies for not paying attention enough :|17:29
tewardthankfully i have a day off tomorrow so :P17:29
tewardrbasak: thanks for catching the version string issue as well, that's actually the most MINOR of the issues heh17:30
tewardrbasak: thanks for sponsoring :)17:43
tewardstupid IRC client >..17:44
tewardrbasak: did SRU get subscribed to that bug?18:04
tewardor do we need to add them18:04
rbasakteward: no subscription needed. They'll pick it up from the queue.18:37
tewardack18:37
mwhudsonsmoser: np, i keep meaning to have another run at getting go upstream to maintain it18:46
mwhudson(why do they keep doing releases on fridays dammit)18:46
tewardrbasak: looks like it's landed now for Disco, thanks :)19:08
gislavedteward it's an ubuntu issue I have19:18
sarnolddo I need to worry about this? "device-mapper: reload ioctl on osprober-linux-sdb1  failed: Device or resource busy" -- I got a bunch of them while updating: http://paste.ubuntu.com/p/hS7YTdkRZk/20:22
ahasenackno idea20:23
sdeziel"Found Ubuntu 11.04 (11.04) on /dev/sdn3" sweet :)20:23
sdezielos-prober is the 2nd package I purge on a machine, the first being nano ;)20:24
sarnoldsdeziel: oh yeah?? I friggen hate those messages in my dmesg..20:24
sarnoldsdeziel: please promise me it's okay to purge? :)20:24
sdezielsarnold: IIRC, it probes every block devices looking for bootable OS/bootloaders, not something I need nor want20:25
sarnoldthat 11.04 image.. I popped the drive in to try to find a lost file on an old source control snapshot (it wasn't there) ... and left it in hoping that it would encourage me to actually copy off the data that I want :D20:25
sdezielsarnold: I especially don't like when my hypervisor tries to probe the disks assigned to my (running!) VMs20:25
sarnoldsdeziel: and new grub packages, new linux-image packages, those install and work fine afterwards?20:26
sdezielsarnold: oh yeah20:26
sarnoldsdeziel: thanks! purging.. :)20:26
lordcirth_If you aren't dual-booting, you don't need os-prober20:26
sdezielfor sarnold, it's probably more octo-booting though ;)20:28
sarnoldI don't even like single-booting20:29
lordcirth_I think my record was 720:29
sarnoldI want to pretend my machine is always running20:29
sarnoldback when I did dual-boot, I did it by yanking one drive and inserting another. to make sure nothing got bright ideas about scribbling over the other os20:29
sdezielkexec'ing another OS must be fun20:29
sarnoldsdeziel: WAY FASTER reboots20:29
trippehkexec is the bestest.20:35
trippehrebooting 2 socket servers with like 4-5 seconds of downtime.20:37
sarnoldexactly, no more five minutes for who knows what it's doing :)20:48
lordcirth_Although, actually spinning down hard drives occasionally is a good idea - you don't want to find out they don't spin up all at the same time.20:50
lordcirth_Assuming you actually have spinning disks.20:50
sarnoldindeed this machine's got a bunch of em20:58

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