=== ilasc changed the topic of #launchpad to: Help contact: ilasc (08:00-17:00 UTC Mon-Fri) | Launchpad is an open source project: https://dev.launchpad.net/ | This channel is logged: http://irclogs.ubuntu.com/ | User Guide: https://help.launchpad.net/ | Support and spam reporting: https://answers.launchpad.net/launchpad [08:31] hello, looks like bos2 has a lot to clean today... [08:33] LocutusOfBorg: we're looking at it, it's failed to respond to a simple reset [08:34] thanks! === ilasc changed the topic of #launchpad to: Known issue: Builders stuck in Cleaning - we're working on it. Help contact: ilasc (08:00-17:00 UTC Mon-Fri) | Launchpad is an open source project: https://dev.launchpad.net/ | This channel is logged: http://irclogs.ubuntu.com/ | User Guide: https://help.launchpad.net/ | Support and spam reporting: https://answers.launchpad.net/launchpad [09:28] restarting bos02 worked, but lots of builds are failing with no logs now... [09:29] https://launchpad.net/~build.snapcraft.io/+snap/f9a48cb504c5a9824b4022c6cfe0a9fe/+build/1147702 [09:29] https://launchpad.net/~lubuntu-ci/+archive/ubuntu/unstable-ci-proposed/+build/20143129 [09:29] https://launchpad.net/ubuntu/+source/ovn/20.06.2-0ubuntu1/+build/20143565 [09:29] and so on [09:37] it's looking like a cloud/network issue, no fix we can try seems to stick === JanC_ is now known as JanC === ilasc changed the topic of #launchpad to: Help contact: ilasc (08:00-17:00 UTC Mon-Fri) | Launchpad is an open source project: https://dev.launchpad.net/ | This channel is logged: http://irclogs.ubuntu.com/ | User Guide: https://help.launchpad.net/ | Support and spam reporting: https://answers.launchpad.net/launchpad === ilasc changed the topic of #launchpad to: Help contact: ilasc - EOD (08:00-17:00 UTC Mon-Fri) | Launchpad is an open source project: https://dev.launchpad.net/ | This channel is logged: http://irclogs.ubuntu.com/ | User Guide: https://help.launchpad.net/ | Support and spam reporting: https://answers.launchpad.net/launchpad [17:04] is there some reason that the ssh daemon on git.launchpad.net offers only an "ssh-rsa" host key? that algorithm is dependent on SHA1, iiuc. I've searched for info about it, but couldn't find anything. I opened https://answers.launchpad.net/launchpad/+question/693449 to see if i could get more info that way [17:05] if there's some better way for me to push on it, please let me know! [17:40] dkg: Linked to a somewhat related bug, thanks [17:41] dkg: As is often the case with issues with our SSH endpoints, it needs some work in Twisted. We've made quite a few contributions there over the last couple of years, and it looks as though we'll need to make more [17:42] cjwatson: thanks for the followup [17:43] Or at least I think it does, hmm [17:44] This stuff is a bit, err, twisted [17:44] no kidding -- it's a lot to keep track of, and i didn't even realize that i was asking for a software change [17:46] Ah yes, it does need Twisted work [17:46] if keyType == "RSA": [17:46] sig = self._keyObject.sign(data, padding.PKCS1v15(), hashes.SHA1()) [17:46] ret = common.NS(sig) [17:46] (twisted.conch.ssh.keys.Key.sign) [17:47] if you open a bug report about this with twisted, i'd be curious to see it [17:48] Given the maintenance of Twisted's SSH code, I'm more likely to open a PR :) [17:48] that too ☺ [17:48] However there is the additional complexity that Twisted upstream is now Python 3-only [17:48] So for the time being even if I do get stuff in there we'd have to backport it [19:52] cjwatson: is the SSH endpoint on git.l.n forcing SHA1 or have you adjusted it to accept non-SHA1 hashes? I ask this because hashes > SHA1 are available with ssh-rsa keys (yes I looked that up) but it needs server-side enforcement last I checked. [19:52] ... nevermind I see the fact that it's Twisted related >.< [19:52] twisted is annoying :P [20:03] teward: twisted just hasn't implemented the other host key algorithms from RFC8332. Likely no big deal to do