--- Log opened Mon Aug 04 00:00:24 2025 --- Day changed Mon Aug 04 2025 00:00 -!- seninha [~seninha@user/seninha] has joined #openbsd 00:01 -!- euphores [~SASL_euph@user/euphores] has quit [Ping timeout: 260 seconds] 00:02 < dlg> what's the problem? 00:02 -!- zip100 [~zip100@185.209.196.152] has quit [Ping timeout: 240 seconds] 00:03 -!- zip100 [~zip100@185.209.196.152] has joined #openbsd 00:06 < dzwdz> i mostly just want to understand why i can't set the same ip on multiple interfaces 00:06 < dzwdz> why that limitation is there 00:07 < sibiria> if you could set the same IP on two interfaces, what will ARP respond? interface 1's MAC or interface 2's? or both? 00:08 < dlg> you can 00:08 < dlg> i dont think you should need to though 00:08 < dzwdz> sibiria: in this case all the interfaces are wireguard, so ARP isn't relevant here 00:09 < dzwdz> but i would assume it'd reply with the MAC of the interface it received the query on? 00:09 < dzwdz> this seems like a pretty obvious answer to me, maybe i'm missing something 00:10 -!- naoki [~Thunderbi@240f:10b:7440:1:d564:7e89:d91:ea6c] has joined #openbsd 00:10 < dzwdz> if i have interfaces A and B with ip 192.0.2.1 directly connected to some other computers 00:10 < dzwdz> and e.g. the computer connected to A asks for the ip of 192.0.2.1 00:10 < dzwdz> er, the mac 00:10 < dzwdz> it obviously should get A's mac 00:11 < dzwdz> dlg: do you see the context in the backlog? i'd gladly hear the openbsd way to do things 00:11 < dzwdz> i solved my sourceaddr woes by moving all the dn42 stuff to a separate rdomain 00:12 < dlg> re the same subnet/ip on multiple ethernet interfaces, i think there's bugs in that space cos of how that stuff is shoved into the routing table 00:12 < dlg> i have a diff somewhere 00:12 < dzwdz> well, this is a half-solution. if the destination is directly on link, the address set with "route sourceaddr" is ignored, and it's trying to use the address assigned to the interface 00:12 < dzwdz> and there is none, so the source address is set to 0.0.0.0 00:12 -!- gotohello [~gotohello@user/gotohello] has joined #openbsd 00:13 < dzwdz> so there are still a few hosts i can't access from the router rdomain without explicitly setting the source address 00:13 < dlg> the impression i get is you have a /28, and you want to use one of the IPs from that range on the router, and then assign the others to other machines 00:13 < dzwdz> it's not really an issue because the only thing running in that rdomain is bgpd, and i'm setting the source addresses there manually anyways 00:13 < dzwdz> but it's still dumb 00:13 < dzwdz> dlg: yup 00:13 < dlg> you use wg to talk to dn42? 00:14 < dzwdz> for the most part 00:14 < dlg> for this part? 00:14 < dzwdz> right now all my peer connections are via wireguard 00:14 < dzwdz> i'll probably also start using tinc for some other peers soon 00:14 < dlg> k 00:15 < dzwdz> (because i want to run a router on 9front, and the only vpn 9front supports is tinc, but that's a whole other story) 00:15 < dlg> so dn42 is routing the /28 to you over a wg link 00:15 < dzwdz> yup 00:15 < dlg> and you've assigned one of the ips in that range to an interface on your router 00:15 < dzwdz> right now it's on an rport in the rdomain i've made for this stuff 00:15 < dlg> k 00:16 < dlg> so the next step is getting the other ips in that /28 onto other hosts? 00:16 < dzwdz> well, no, not quite 00:16 < dlg> oh? 00:17 < dzwdz> well, most importantly i want to understand why this limitation is there 00:18 < dlg> i havent seen the limitation yet 00:18 < dzwdz> i assume it's there for a reason, but i'm pretty sure that e.g. linux does let me assign the same ip to multiple interfaces 00:18 < dlg> oh, that one 00:18 < dlg> im pretty sure ive assigned the same ip on multiple non-ethernet interfaces before 00:19 < dzwdz> this also makes it so stuff like "route add 192.0.2.1 -iface -link wg1234" fails, because wg1234 doesn't have an IP assigned 00:19 < dzwdz> dlg: this seems to be possible if the interface is POINTOPOINT 00:19 < dzwdz> which wireguard isn't 00:19 < dlg> yep 00:19 < dlg> i'll have to look at why it's hard for wg 00:20 < dlg> generally i burn some rfc1918 space for links between things 00:20 < dzwdz> when i tried doing this before separating dn42 out into a separate rdomain 00:21 < dzwdz> hm, i'm not sure how to explain this succintly 00:21 < dlg> it's annoyingly subtle, yes 00:22 < dzwdz> basically, when i was connecting to dn42 hosts, it would use that "local" address as the source address 00:22 < dlg> you said something about source addresses too 00:22 < dlg> ok 00:22 < dlg> so that's a semantic from the socket code in the kernel 00:23 < dlg> if you connect() without binding to a specific ip, the socket code will do a route lookup to the destination and use the local ip from the interface the route is on 00:23 < dzwdz> yeah, so the fact that i can't set the same ip on multiple interfaces is really annoying here 00:24 < dlg> this can be changed with route sourceaddr, but that only kicks in if the destination IP is not "on link" 00:24 < dzwdz> yup 00:25 < dzwdz> thanks for your patience btw 00:26 -!- adig_ [~default@2a02:2f0e:fa11:9201:f172:1c48:3609:54c0] has quit [Read error: Connection reset by peer] 00:26 < dlg> are you using 7.7 or a snapshot? 00:27 < dzwdz> 7.7 00:27 < dlg> ok 00:27 < dlg> the way "on link" for route sourceaddr is decided has changed in -current 00:28 < dlg> in 7.7 it will never use route sourceaddr for routes with RTF_HOST set 00:28 < dlg> which sucks if you want to put individual IPs out of your /28 on the other hosts 00:28 < dlg> cos they'll all be host routes 00:28 < dlg> in -current it just uses the RTF_GATEWAY flag 00:29 < dlg> so say you have something like this: https://gist.github.com/dgwynne/e325ad6324d67a9396411f8cc0f4bd09 00:29 < dlg> in 7.7 it'll use 169.254.0.1 as the source ip address because RTF_HOST is set 00:29 < dlg> in current it'll use whatever route sourceaddr is set to (if it's set) because RTF_GATEWAY is set 00:30 < dlg> https://github.com/openbsd/src/commit/ad1752045f2583190b8c2f2123355e1fe15009af 00:32 < dzwdz> so i did actually find that exact commit (or whatever the cvs terminology is before) when investigating 00:32 < dlg> you can work around it with nat in pf 00:32 < dzwdz> i didn't realize the implication that this lets me do what you've shown in that gist (thanks!) 00:33 < dzwdz> but i remember "by definition any route with RTF_GATEWAY set is not directly connected, so using it seems to better suit what route sourceaddr is doing." concerning me 00:33 < dlg> so the flags line in route get shows the RTF_FOO stuff 00:33 < dzwdz> like, those hosts /are/ directly connected 00:34 < dlg> sure, but that doesnt mean the routes have to be 00:34 < dzwdz> makes sense 00:34 < dlg> on link might have been a better way to describe it 00:37 < dzwdz> well, thanks, i'll try to switch to a snapshot then 00:37 < dzwdz> i'm still curious why these limitations are there if you happen to know that 00:38 < dzwdz> "these" as in 1. ips having to be unique, 2. "route add 192.0.2.1 -iface -link wg1234" failing if wg1234 doesn't have an ipv4 address 00:39 < dlg> the latter is cos the kernel doesnt support unnumbered interfaces 00:39 < dlg> routes use ips, the fact that they end up associated with an interface is kind of an afterthought in how it's put together 00:39 < dzwdz> OH, that makes sense 00:40 < dlg> there's been a few attempts to fix that over the years 00:40 < dlg> but it's very deeply ingrained 00:41 < dzwdz> wait, how come i can use the same ip for multiple interfaces with POINTOPOINT then 00:42 < dlg> that's different 00:42 < dlg> they're not unnumbered 00:43 < dlg> i dont know why you cant do that with wg interfaces 00:43 < dlg> but i know it doesnt work well with ethernet interfaces at the moment 00:54 -!- accelerat0r [~user@user/accelerat0r] has joined #openbsd 00:58 -!- slack0 [~slack0@user/slack0] has quit [Quit: zZzZz] 01:11 -!- tdscg^ [~tdscg@99-73-20-238.lightspeed.tukrga.sbcglobal.net] has quit [Ping timeout: 252 seconds] 01:12 -!- zimmer [~zimmer@user/zimmer] has joined #openbsd 01:15 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 01:15 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 01:23 -!- itchy [~itchy@user/itchy] has quit [Ping timeout: 252 seconds] 01:25 -!- itchy [~itchy@user/itchy] has joined #openbsd 01:32 -!- cavecanem9 [~cavecanem@user/cavecanem] has joined #openbsd 01:32 -!- ublx [~ublx@user/ublx] has quit [Quit: ublx] 01:33 -!- cavecanem [~cavecanem@user/cavecanem] has quit [Ping timeout: 240 seconds] 01:33 -!- cavecanem9 is now known as cavecanem 01:43 -!- tdscg^ [~tdscg@99-73-20-238.lightspeed.tukrga.sbcglobal.net] has joined #openbsd 01:59 -!- drkhsh [~drkhsh@user/drkhsh] has quit [Quit: WeeChat 4.4.2] 02:03 -!- drkhsh [~drkhsh@user/drkhsh] has joined #openbsd 02:41 -!- wickedshell [~wickedshe@c-174-56-48-20.hsd1.nm.comcast.net] has joined #openbsd 02:41 -!- seninha [~seninha@user/seninha] has quit [Quit: Leaving] 02:50 -!- CrimeWave [~Montreal@user/CrimeWave] has joined #openbsd 02:52 -!- _zip100 [~zip100@185.209.196.158] has joined #openbsd 02:53 -!- zip100 [~zip100@185.209.196.152] has quit [Ping timeout: 276 seconds] 02:55 -!- macabro [~user@user/monkey/x-0691028] has joined #openbsd 03:16 -!- tvtoon [~The_cUnix@user/tvtoon] has quit [Quit: "Less than bytes."] 03:22 -!- lusciouslover [~lusciousl@2603:6080:d03:610d::1050] has quit [Ping timeout: 245 seconds] 03:23 -!- lusciouslover [~lusciousl@2603:6080:d03:610d::1050] has joined #openbsd 03:26 -!- lusciouslover [~lusciousl@2603:6080:d03:610d::1050] has quit [Remote host closed the connection] 03:28 -!- lusciouslover [~lusciousl@2603:6080:d03:610d::1050] has joined #openbsd 03:31 -!- amadaluzia [~amadaluzi@user/amadaluzia] has quit [Quit: ZNC 1.10.1 - https://znc.in] 03:38 -!- SamsonSmith [~allbombso@patchysicp.xyz] has joined #openbsd 03:52 -!- adig [~default@2a02:2f0e:fa11:9201:f172:1c48:3609:54c0] has joined #openbsd 03:53 -!- edthix [~Thunderbi@124.82.137.87] has joined #openbsd 03:56 -!- macabro [~user@user/monkey/x-0691028] has quit [Read error: Connection reset by peer] 03:57 -!- seninha [~seninha@user/seninha] has joined #openbsd 03:59 -!- seninha [~seninha@user/seninha] has quit [Client Quit] 04:04 -!- macabro [~user@user/monkey/x-0691028] has joined #openbsd 04:17 -!- textmode [~textmode@81-235-203-183-no205.tbcn.telia.com] has quit [Quit: leaving] 04:22 -!- gotohello [~gotohello@user/gotohello] has quit [Quit: Client closed] 04:26 -!- gotohello [~gotohello@user/gotohello] has joined #openbsd 04:46 -!- dg [~dgl@user/dg] has quit [Ping timeout: 252 seconds] 04:47 -!- njn [~njn@user/njn] has quit [Quit: bbl] 04:53 -!- dg [~dgl@user/dg] has joined #openbsd 05:07 -!- horrad [~Thunderbi@2003:a:61f:c901:9907:f2af:6ea5:44bb] has joined #openbsd 05:15 -!- vdamewood [~vdamewood@fedora/vdamewood] has quit [Quit: Life beckons] 05:15 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 05:16 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 05:16 -!- vdamewood [~vdamewood@fedora/vdamewood] has joined #openbsd 05:20 -!- CrimeWave [~Montreal@user/CrimeWave] has quit [Ping timeout: 252 seconds] 05:33 -!- ivdsangen [~ivo@83-84-59-127.cable.dynamic.v4.ziggo.nl] has joined #openbsd 05:35 -!- agentcasey [~agentcase@143-42-229-181.ip.linodeusercontent.com] has joined #openbsd 05:36 -!- agentcasey_ [~agentcase@143-42-229-181.ip.linodeusercontent.com] has quit [Ping timeout: 248 seconds] 05:46 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 05:46 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 05:49 -!- gotohello [~gotohello@user/gotohello] has quit [Quit: Client closed] 05:56 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 05:56 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 06:08 -!- ryan [ryan@fragged.slipgate.org] has quit [Ping timeout: 276 seconds] 06:08 -!- lavaball [~Melissa@31.204.155.215] has joined #openbsd 06:10 -!- ryan [ryan@fragged.slipgate.org] has joined #openbsd 06:12 -!- shiranaihito_ [~shiranaih@ppp-58-11-158-201.revip2.asianet.co.th] has joined #openbsd 06:16 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 06:17 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 06:22 -!- cavecanem9 [~cavecanem@user/cavecanem] has joined #openbsd 06:24 -!- cavecanem [~cavecanem@user/cavecanem] has quit [Ping timeout: 276 seconds] 06:24 -!- cavecanem9 is now known as cavecanem 06:27 -!- ruidx [~zk@46.19.64.169] has joined #openbsd 06:29 -!- Leone [~Leo@104.247.239.65] has quit [Read error: Connection reset by peer] 06:32 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 06:32 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 06:33 -!- skippy8 [~skippy8@user/Skippy8] has joined #openbsd 06:37 -!- drathir_tor [~drathir@wireguard/tunneler/drathir] has quit [Ping timeout: 240 seconds] 06:39 -!- drathir_tor [~drathir@wireguard/tunneler/drathir] has joined #openbsd 06:47 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 06:47 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 07:07 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 07:08 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 07:11 -!- horsegoosemeth [~horsegoos@125.63.148.37] has joined #openbsd 07:14 -!- mordac [~mordac@user/mordac] has quit [Quit: mordac] 07:17 -!- feriman [~feriman@user/feriman] has joined #openbsd 07:20 -!- jerryf_ [~jerryf@user/jerryf] has quit [Ping timeout: 240 seconds] 07:22 -!- jerryf [~jerryf@user/jerryf] has joined #openbsd 07:23 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 07:23 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 07:25 -!- sandbag [~sandbag@user/sandbag] has joined #openbsd 07:25 -!- xx [~xx@user/xx] has joined #openbsd 07:30 -!- C-Keen [cckeen@krieg.pestilenz.org] has joined #openbsd 07:35 -!- xet7 [~xet7@user/xet7] has joined #openbsd 07:37 -!- nekobit [~freebtc4u@198.98.57.223] has quit [Ping timeout: 252 seconds] 07:38 -!- feriman [~feriman@user/feriman] has quit [Read error: Connection reset by peer] 07:48 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 07:48 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 08:17 -!- b50d [~b50d@62.96.54.30] has joined #openbsd 08:23 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 08:24 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 08:25 -!- lotsen [~lotsen@c85-194-55-58.bredband.tele2.se] has joined #openbsd 08:25 -!- lotsen [~lotsen@c85-194-55-58.bredband.tele2.se] has quit [Changing host] 08:25 -!- lotsen [~lotsen@user/Lotsen] has joined #openbsd 08:47 -!- ikarso [uid475540@id-475540.tinside.irccloud.com] has joined #openbsd 08:51 -!- edthix [~Thunderbi@124.82.137.87] has quit [Quit: edthix] 09:03 -!- Sario [sario@libera/staff/owl/sario] has joined #openbsd 09:06 -!- jgh [~jgh@hellmouth.gulag.org.uk] has joined #openbsd 09:21 -!- horsegoosemeth [~horsegoos@125.63.148.37] has quit [Read error: Connection reset by peer] 09:21 -!- feriman [~feriman@user/feriman] has joined #openbsd 09:22 -!- vdamewood [~vdamewood@fedora/vdamewood] has quit [Quit: My Mac has gone to sleep. ZZZzzz…] 09:22 -!- tarxvfz [~tarxvfz@gateway/tor-sasl/tarxvfz] has joined #openbsd 09:24 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 09:24 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 09:29 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 09:29 -!- vdamewood [~vdamewood@fedora/vdamewood] has joined #openbsd 09:29 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 09:30 -!- sirphat0n_ [~sp@fixed-187-188-74-11.totalplay.net] has joined #openbsd 09:32 -!- sirphat0n [~sp@user/sirphat0n] has quit [Ping timeout: 260 seconds] 09:34 -!- yclept [~yclept@user/yclept] has joined #openbsd 09:44 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 09:45 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 09:50 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 09:50 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 10:05 -!- horsegoosemeth [~horsegoos@125.63.148.37] has joined #openbsd 10:15 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 10:15 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 10:19 -!- feriman [~feriman@user/feriman] has quit [Quit: Lost terminal] 10:21 -!- comradeCrow [~comradeCr@99-110-128-132.lightspeed.irvnca.sbcglobal.net] has quit [Ping timeout: 265 seconds] 10:22 -!- byteskeptical [~amnesia@user/byteskeptical] has quit [Quit: Lost terminal] 10:24 -!- feriman [~feriman@user/feriman] has joined #openbsd 10:26 -!- feriman [~feriman@user/feriman] has quit [Client Quit] 10:26 -!- feriman [~feriman@user/feriman] has joined #openbsd 10:27 -!- CrashOverride [~strcat@p54855b3f.dip0.t-ipconnect.de] has joined #openbsd 10:30 -!- adig [~default@2a02:2f0e:fa11:9201:f172:1c48:3609:54c0] has quit [Read error: Connection reset by peer] 10:41 -!- six [~six@user/six] has quit [Quit: nyaa~] 10:43 -!- gtlwuc [uid621242@user/gtlwuc] has joined #openbsd 10:43 -!- typicat [~iam@user/typicat] has quit [Ping timeout: 265 seconds] 10:45 -!- apac [~alexander@user/apac] has joined #openbsd 10:45 -!- typicat [~iam@user/typicat] has joined #openbsd 10:45 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 10:46 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 10:46 -!- busterbcook [~busterbco@user/busterbcook] has quit [Quit: ZNC 1.9.1 - https://znc.in] 10:46 -!- sata [~sata@5.143.104.137] has joined #openbsd 10:47 -!- android [~android@5.143.104.137] has joined #openbsd 10:48 -!- horsegoosemeth [~horsegoos@125.63.148.37] has quit [Read error: Connection reset by peer] 10:48 -!- busterbcook [~busterbco@user/busterbcook] has joined #openbsd 11:00 -!- bsdperl [~bsdperl@user/bsdperl] has quit [Quit: bsdperl] 11:01 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 11:01 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 11:02 -!- lotsen [~lotsen@user/Lotsen] has quit [Ping timeout: 244 seconds] 11:03 -!- KennySmith44_ [~kenny@user/KennySmith44-:28329] has joined #openbsd 11:06 -!- bsdperl [~bsdperl@user/bsdperl] has joined #openbsd 11:06 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 11:06 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 11:08 -!- psydroid2 [~psydroid@user/psydroid] has joined #openbsd 11:31 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 11:32 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 11:33 -!- f451 [~f451@user/f451] has joined #openbsd 11:39 -!- android [~android@5.143.104.137] has quit [Quit: Client closed] 11:40 -!- d-ra [~d-ra@user/d-ra] has joined #openbsd 11:40 -!- sata [~sata@5.143.104.137] has quit [Quit: Client closed] 11:42 -!- ublx [~ublx@user/ublx] has joined #openbsd 11:42 -!- textmode [~textmode@81-235-203-183-no205.tbcn.telia.com] has joined #openbsd 11:45 -!- o0ox1eef [~user@user/o0x1eef] has joined #openbsd 11:45 -!- o0x1eef [~user@user/o0x1eef] has quit [Ping timeout: 240 seconds] 11:47 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 11:47 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 11:59 -!- mjt2 [~mjt@203.123.101.148] has joined #openbsd 12:06 -!- CrashOverride [~strcat@p54855b3f.dip0.t-ipconnect.de] has quit [Ping timeout: 272 seconds] 12:08 -!- CrashOverride [~strcat@p5485477f.dip0.t-ipconnect.de] has joined #openbsd 12:12 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 12:12 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 12:17 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 12:18 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 12:19 -!- zayd [~zayd@user/zayd] has quit [Ping timeout: 265 seconds] 12:22 -!- zayd [~zayd@user/zayd] has joined #openbsd 12:23 -!- mjt2 [~mjt@203.123.101.148] has quit [Read error: Connection reset by peer] 12:28 -!- zayd [~zayd@user/zayd] has quit [Ping timeout: 244 seconds] 12:31 -!- Leone [~Leo@104.247.239.65] has joined #openbsd 12:34 -!- f451 [~f451@user/f451] has quit [Ping timeout: 276 seconds] 12:35 -!- m1dnight_ [~m1dnight@109.236.63.204] has quit [Ping timeout: 245 seconds] 12:35 -!- f451 [~f451@user/f451] has joined #openbsd 12:38 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 12:38 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 12:44 -!- m1dnight_ [~m1dnight@d8D861A17.access.telenet.be] has joined #openbsd 12:47 -!- Guest59 [~Guest59@31-36-208-20.abo.bbox.fr] has joined #openbsd 12:50 -!- m1dnight_ [~m1dnight@d8D861A17.access.telenet.be] has quit [Ping timeout: 248 seconds] 12:51 -!- horsegoosemeth [~horsegoos@125.63.148.37] has joined #openbsd 12:52 -!- m1dnight_ [~m1dnight@109.236.62.22] has joined #openbsd 13:00 -!- zayd [~zayd@user/zayd] has joined #openbsd 13:08 -!- Guest59 [~Guest59@31-36-208-20.abo.bbox.fr] has quit [Ping timeout: 252 seconds] 13:10 -!- zayd [~zayd@user/zayd] has quit [Ping timeout: 265 seconds] 13:18 -!- lotsen [~lotsen@c85-194-55-58.bredband.tele2.se] has joined #openbsd 13:18 -!- lotsen [~lotsen@c85-194-55-58.bredband.tele2.se] has quit [Changing host] 13:18 -!- lotsen [~lotsen@user/Lotsen] has joined #openbsd 13:19 -!- dab21 [dab21@pistis.amyanddavid.net] has quit [Quit: ZNC 1.9.1 - https://znc.in] 13:20 -!- dab21 [dab21@pistis.amyanddavid.net] has joined #openbsd 13:23 -!- mjt2 [~mjt@203.123.101.148] has joined #openbsd 13:28 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 13:28 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 13:29 -!- naoki [~Thunderbi@240f:10b:7440:1:d564:7e89:d91:ea6c] has quit [Quit: naoki] 13:36 -!- yclept [~yclept@user/yclept] has quit [Remote host closed the connection] 13:42 -!- mjt2 [~mjt@203.123.101.148] has quit [Ping timeout: 260 seconds] 13:44 -!- mjt2 [~mjt@203.123.101.148] has joined #openbsd 13:48 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 13:49 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 13:53 -!- zayd [~zayd@user/zayd] has joined #openbsd 13:54 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 13:54 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 14:02 -!- user71 [~user71@2001:1530:1011:383f:1961:38ff:fcc8:9795] has joined #openbsd 14:09 -!- mjt2 [~mjt@203.123.101.148] has quit [Remote host closed the connection] 14:09 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 14:09 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 14:15 -!- izder456 [~izder456@syn-035-148-122-041.res.spectrum.com] has joined #openbsd 14:16 < izder456> is there any documentation on creating an rc.d script for a port i'm working on? (well, outside of the template) 14:17 -!- xet7_ [~xet7@user/xet7] has joined #openbsd 14:18 < izder456> i'm planning on writing a rc.d script for my games/luanti port so people can host luanti servers easily on openbsd. 14:18 -!- xet7 [~xet7@user/xet7] has quit [Ping timeout: 276 seconds] 14:19 < oldlaptop> You probably want to chase some of the cross-references on https://man.openbsd.org/rc.d 14:19 < izder456> thanks, oldlaptop 14:19 < oldlaptop> especially https://man.openbsd.org/rc.subr.8 14:20 < izder456> the template reads like greek to me so having proper docs is nice 14:20 -!- xet7_ [~xet7@user/xet7] has quit [Remote host closed the connection] 14:31 < kuzdra> since you are already on this: where can i see the template? 14:32 < oldlaptop> rc.subr(8) actually says, under FILES 14:33 < kuzdra> got it, thanks! 14:33 < oldlaptop> (conveniently that one is pretty straightforward on cvsweb :) https://cvsweb.openbsd.org/ports/infrastructure/templates/) 14:33 < izder456> kuzdra: https://cvsweb.openbsd.org/ports/infrastructure/templates/rc.template 14:34 < izder456> if you like, any help writing a rc script and testing for the games/luanti port would be helpful 14:35 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 14:35 < izder456> i don't plan on running my own luanti server but got a buddy who plans on it 14:35 < izder456> so i have little personal need for it 14:35 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 14:35 -!- dab21 [dab21@pistis.amyanddavid.net] has quit [Quit: ZNC 1.9.1 - https://znc.in] 14:36 -!- jfsimon1981 [~jfsimon19@2a01:cb14:b9b:2000:152a:64f6:40a4:5cac] has quit [Remote host closed the connection] 14:36 -!- dab21 [dab21@pistis.amyanddavid.net] has joined #openbsd 14:39 -!- jfsimon1981 [~jfsimon19@2a01:cb14:b9b:2000:152a:64f6:40a4:5cac] has joined #openbsd 14:39 -!- yclept [~yclept@user/yclept] has joined #openbsd 14:39 < kuzdra> izder456: i don't have experience, sorry. i've been thinking on making a port of a web service and it would need an rc script, so asked for it's already came up 14:40 < izder456> ah ic ic 14:40 < kuzdra> but hey, maybe someone on #openbsd-gaming will be keen on trying it out? 14:41 < kuzdra> ofc, ports@ is very helpful too 14:41 < pardis> if your program is well-behaved, writing an rc script should not be a job so big that help is needed 14:41 < pardis> most rc scripts are 3 lines long 14:42 -!- jfsimon1981 [~jfsimon19@2a01:cb14:b9b:2000:152a:64f6:40a4:5cac] has quit [Remote host closed the connection] 14:42 < izder456> i mean people have written OpenRC and SystemD services in the linux world for it, so i doubt it'd be too much trouble 14:42 -!- jfsimon1981 [~jfsimon19@2a01:cb14:b9b:2000:152a:64f6:40a4:5cac] has joined #openbsd 14:43 < izder456> I'm just not confident in my abilities 14:43 -!- poh [~resu@user/poh] has quit [Quit: leaving] 14:43 -!- grain772 [~grain77@user/grain77] has joined #openbsd 14:44 -!- skippy8 [~skippy8@user/Skippy8] has quit [Quit: WeeChat 4.6.3] 14:44 -!- skippy8 [~skippy8@user/Skippy8] has joined #openbsd 14:45 < thrig> what is well behaved for systemd may not be compatible with rc 14:45 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 14:45 -!- sonne [~vmlinuz@user/sonne] has quit [Ping timeout: 244 seconds] 14:45 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 14:45 -!- grain77 [~grain77@user/grain77] has quit [Ping timeout: 248 seconds] 14:45 -!- grain772 is now known as grain77 14:46 -!- skippy8 [~skippy8@user/Skippy8] has quit [Client Quit] 14:47 < sibiria> if you can manage the horrific dumpster fire that is systemd service files, openbsd rc files should be no problem 14:47 < izder456> thanks for the confidence boost xD 14:48 -!- zayd [~zayd@user/zayd] has quit [Ping timeout: 276 seconds] 14:51 -!- skippy8 [~skippy8@185.224.112.81] has joined #openbsd 14:52 -!- skippy8 [~skippy8@185.224.112.81] has quit [Client Quit] 15:00 -!- horrad [~Thunderbi@2003:a:61f:c901:9907:f2af:6ea5:44bb] has quit [Ping timeout: 248 seconds] 15:11 -!- poh [~resu@user/poh] has joined #openbsd 15:12 -!- slack0 [~slack0@user/slack0] has joined #openbsd 15:15 -!- uwharrie [~uwharrie@user/uwharrie] has left #openbsd [] 15:19 -!- VoidKrypt [VoidKrypt@user/VoidKrypt] has quit [Changing host] 15:19 -!- VoidKrypt [VoidKrypt@2605:6400:864b:b1a8:8015:b06a:e40c:35f6] has joined #openbsd 15:24 -!- Bradipo [~Bradipo@50.77.44.29] has joined #openbsd 15:24 -!- zayd [~zayd@user/zayd] has joined #openbsd 15:25 -!- amadaluzia [~amadaluzi@user/amadaluzia] has joined #openbsd 15:31 -!- rain0r [~rainer@p200300e88f00b400caffbffffe03d6f2.dip0.t-ipconnect.de] has quit [Quit: WeeChat 3.8] 15:32 -!- rain0r [~rainer@p200300e88f00b400caffbffffe03d6f2.dip0.t-ipconnect.de] has joined #openbsd 15:35 -!- zayd [~zayd@user/zayd] has quit [Ping timeout: 244 seconds] 15:43 -!- Darkcipher [~Darkciphe@seve-27-b2-v4wan-172977-cust849.vm13.cable.virginm.net] has joined #openbsd 15:43 -!- skippy8 [~skippy8@user/Skippy8] has joined #openbsd 15:52 -!- fspax [~fspax@46.148.141.164] has joined #openbsd 15:52 -!- izder456 [~izder456@syn-035-148-122-041.res.spectrum.com] has quit [Quit: Client closed] 15:53 -!- bigato [~bigato@170.81.149.131] has joined #openbsd 15:53 -!- bigato [~bigato@170.81.149.131] has quit [Changing host] 15:53 -!- bigato [~bigato@user/bigato] has joined #openbsd 15:53 -!- skippy8 [~skippy8@user/Skippy8] has quit [Quit: WeeChat 4.6.3] 15:54 -!- skippy8 [~skippy8@user/Skippy8] has joined #openbsd 15:55 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 15:55 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 15:57 -!- izder456 [~izder456@syn-035-148-122-041.res.spectrum.com] has joined #openbsd 15:57 -!- cgnarne_ [~pk@2001-4dd5-1ede-0-220-91ff-feff-ee02.ipv6dyn.netcologne.de] has joined #openbsd 15:58 -!- cgnarne [~pk@user/cgnarne] has quit [Ping timeout: 276 seconds] 16:00 -!- xv8 [~xv8@user/XV8] has quit [Remote host closed the connection] 16:00 -!- xv8 [~xv8@pool-173-71-196-158.clppva.fios.verizon.net] has joined #openbsd 16:00 -!- xv8 [~xv8@pool-173-71-196-158.clppva.fios.verizon.net] has quit [Changing host] 16:00 -!- xv8 [~xv8@user/XV8] has joined #openbsd 16:02 -!- mordac [~mordac@user/mordac] has joined #openbsd 16:02 -!- fspax [~fspax@46.148.141.164] has quit [Remote host closed the connection] 16:11 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has quit [Quit: Konversation terminated!] 16:11 -!- SirJitsu [~SirJitsu@162-231-111-175.lightspeed.livnmi.sbcglobal.net] has joined #openbsd 16:12 -!- b50d [~b50d@62.96.54.30] has quit [Remote host closed the connection] 16:13 -!- gtlwuc [uid621242@user/gtlwuc] has quit [Quit: Connection closed for inactivity] 16:13 -!- d-ra [~d-ra@user/d-ra] has quit [Quit: Leaving] 16:20 -!- c0co [~c0co@user/c0co] has joined #openbsd 16:24 -!- bigato [~bigato@user/bigato] has quit [Ping timeout: 252 seconds] 16:26 -!- feriman [~feriman@user/feriman] has quit [Ping timeout: 240 seconds] 16:27 -!- slack0 [~slack0@user/slack0] has quit [Quit: quit] 16:28 -!- sonne [~vmlinuz@user/sonne] has joined #openbsd 16:29 -!- horsegoosemeth [~horsegoos@125.63.148.37] has quit [Read error: Connection reset by peer] 16:30 -!- horsegoosemeth [~horsegoos@125.63.148.37] has joined #openbsd 16:40 -!- krl_ [~krl@h-155-4-221-200.NA.cust.bahnhof.se] has joined #openbsd 16:42 -!- krl [~krl@h-155-4-221-200.NA.cust.bahnhof.se] has quit [Ping timeout: 252 seconds] 16:52 -!- textmode [~textmode@81-235-203-183-no205.tbcn.telia.com] has quit [Quit: leaving] 16:53 -!- Poltawer [~xt003@user/Poltawer] has joined #openbsd 16:56 -!- textmode [~textmode@81-235-203-183-no205.tbcn.telia.com] has joined #openbsd 17:04 < jrmu> does openbsd support BSDAuth? 17:09 -!- fgarcia_ [~lei@user/fgarcia] has joined #openbsd 17:09 -!- zorz [~zorz@user/zorz] has joined #openbsd 17:09 -!- Darkcipher [~Darkciphe@seve-27-b2-v4wan-172977-cust849.vm13.cable.virginm.net] has quit [Quit: Asta La Vista !!] 17:09 -!- fgarcia [~lei@user/fgarcia] has quit [Ping timeout: 240 seconds] 17:09 -!- Xenguy_ [~Xenguy@user/xenguy] has joined #openbsd 17:09 < oldlaptop> If https://man.openbsd.org/authenticate.3 is what you mean by BSDAuth 17:10 -!- ikarso [uid475540@id-475540.tinside.irccloud.com] has quit [Quit: Connection closed for inactivity] 17:12 < jrmu> hmm, ok thanks oldlaptop 17:12 -!- Xenguy [~Xenguy@user/xenguy] has quit [Ping timeout: 276 seconds] 17:12 < jrmu> a dovecot user told me to use bsdauth if possible for authentication, since our passwd files were not compatible with the format dovecot expected 17:13 -!- fflam [~mdt@2600:4040:10fa:f00::1c19] has quit [Ping timeout: 252 seconds] 17:15 -!- fflam [~mdt@87.249.134.4] has joined #openbsd 17:17 -!- f451 [~f451@user/f451] has quit [Ping timeout: 252 seconds] 17:22 -!- fflam [~mdt@87.249.134.4] has quit [Ping timeout: 276 seconds] 17:24 -!- fflam [~mdt@2600:4040:10fa:f00::1c19] has joined #openbsd 17:25 -!- euphores [~SASL_euph@user/euphores] has joined #openbsd 17:26 -!- jkossen [~jochem@user/jkossen] has joined #openbsd 17:33 < jtt> after almost 2 years of on and off work on the port, freecad is in the tree :) 17:37 < poh> that's wonderful news! Good on you. 17:39 -!- f451 [~f451@user/f451] has joined #openbsd 17:42 -!- zayd [~zayd@user/zayd] has joined #openbsd 17:46 -!- fgarcia_ is now known as fgarcia 17:46 -!- jfsimon1981 [~jfsimon19@2a01:cb14:b9b:2000:152a:64f6:40a4:5cac] has quit [Remote host closed the connection] 17:47 -!- u1 [~u1@116.68.72.98] has joined #openbsd 17:48 -!- u1 [~u1@116.68.72.98] has quit [Client Quit] 17:49 -!- zayd [~zayd@user/zayd] has quit [Ping timeout: 272 seconds] 17:51 < oldlaptop> Quite the comprehensive and effective design/additive-manufacturing toolchain in ports these days :) 17:53 * oldlaptop gave up trying to build prusaslicer probably six or seven years ago 17:55 -!- jfsimon [~jfsimon19@2a01:cb14:b9b:2000:152a:64f6:40a4:5cac] has joined #openbsd 17:56 -!- poh [~resu@user/poh] has quit [Remote host closed the connection] 18:04 -!- zorz [~zorz@user/zorz] has quit [Quit: leaving] 18:07 -!- poh [~resu@user/poh] has joined #openbsd 18:12 -!- yclept [~yclept@user/yclept] has quit [Remote host closed the connection] 18:12 -!- jfsimon [~jfsimon19@2a01:cb14:b9b:2000:152a:64f6:40a4:5cac] has quit [Remote host closed the connection] 18:14 -!- jfsimon [~jfsimon19@2a01:cb14:b9b:2000:152a:64f6:40a4:5cac] has joined #openbsd 18:14 -!- zayd [~zayd@user/zayd] has joined #openbsd 18:15 -!- el_pepe [~ed@user/el-pepe:51868] has joined #openbsd 18:17 -!- ublx [~ublx@user/ublx] has quit [Ping timeout: 245 seconds] 18:17 -!- sandbag [~sandbag@user/sandbag] has quit [Ping timeout: 245 seconds] 18:17 < el_pepe> Hi im currently on a travel trip and cant look this up indepth, i had to add proc >> pledge.content in /etc/firefox otherwise all firefox tabs were crashing on me. Is this safe to keep like this? 18:18 -!- jfsimon [~jfsimon19@2a01:cb14:b9b:2000:152a:64f6:40a4:5cac] has quit [Max SendQ exceeded] 18:22 -!- zayd [~zayd@user/zayd] has quit [Ping timeout: 248 seconds] 18:22 -!- Echoz [~chris@user/echoz] has quit [Ping timeout: 240 seconds] 18:22 -!- ublx [~ublx@user/ublx] has joined #openbsd 18:24 -!- jfsimon [~jfsimon19@2a01:cb14:b9b:2000:152a:64f6:40a4:5cac] has joined #openbsd 18:26 -!- yclept [~yclept@user/yclept] has joined #openbsd 18:27 < Feigr> anyone have any tips for how to open a URL that your cursor is on in vi (not vim)? 18:27 < Feigr> maybe using marks in vi and then passing the content of that to an external program? 18:33 < jrmu> has anyone tried chrooting httpd to /home/ instead of /var/www? Are there any drawbacks to this setup? 18:34 < Bradipo> Feigr: I usually just do triple-click (with mouse) to highlight the line and then paste it where I want. 18:35 < Bradipo> If you're using terminal only, then you could use tmux. 18:35 < Bradipo> jmru: Depends on your intentions and goals I suppose. 18:35 < Feigr> ah yes maybe tmux is the answer and now vi itself 18:35 < Bradipo> You could use vi/ex commands I suppose. 18:39 -!- poh [~resu@user/poh] has quit [Quit: leaving] 18:40 -!- rewtkid [~rewtkid@user/rewtkid] has quit [Quit: rewtkid] 18:41 < quinq> Drawback could be sharing unwanting data 18:41 < quinq> And httpd not having access to (some) files 18:41 < quinq> s/unwanting/unwanted/ 18:41 -!- rewtkid [~rewtkid@user/rewtkid] has joined #openbsd 18:42 -!- lavaball [~Melissa@31.204.155.215] has quit [Quit: lavaball] 18:43 -!- lavaball [~Melissa@31.204.155.215] has joined #openbsd 18:45 -!- elarks [~yerri@user/yerrii] has joined #openbsd 18:45 -!- mw [~mw@ripley.0x6d77.org] has quit [Quit: kumquat] 18:46 < jrmu> does it break anything? I saw someone do it once on a system and acme-client seemed no longer to work 18:46 -!- poh [~resu@user/poh] has joined #openbsd 18:46 < quinq> Well 18:46 < quinq> acme-client writes in some place 18:47 < quinq> If httpd doesn't have access to that place, it will not work 18:47 < quinq> If you change where httpd lives, you have to synchronize with other services that use httpd 18:47 < poh> does the users command list all users logged in? like does it show an entry for an ssh'd in user and a local user as seperate even though they're the same account? 18:47 < jrmu> hm alright thanks quinq 18:47 < poh> one sec i'll read the man page 18:48 < quinq> jrmu, technically you could also run several httpds, and use relayd to redirect to one or the other depending on the requested path 18:48 < jrmu> the benefit I was thinking is that users could write webdocs in their home folder 18:49 < jrmu> rather than having to write on a separate partition in /var/, it would make disk quotas easier to manage 18:49 < poh> nah that's how users works on gnu/linux. i'm looking for the who command. 18:49 < quinq> You could also have a /var/www/htdocs/users, and in each user's home a ~/www that points to /var/www/htdocs/users/$USER 18:50 < quinq> jrmu, then it wouldn't work yeah ^^ 18:50 < jrmu> yeah that's the setup I currently am using 18:50 < jrmu> a symlink to /var/www/htdocs/$USER 18:50 < Bradipo> That's what I currently do as well. 18:51 < jrmu> (be back later) 18:51 < quinq> Yeah poh :) 18:53 -!- jerryf_ [~jerryf@user/jerryf] has joined #openbsd 18:53 -!- jerryf [~jerryf@user/jerryf] has quit [Ping timeout: 240 seconds] 18:55 < poh> quinq: thank you 18:57 -!- KennySmith44_ [~kenny@user/KennySmith44-:28329] has quit [Quit: WeeChat 4.7.0] 18:58 -!- Echoz [~chris@user/echoz] has joined #openbsd 18:59 -!- jerryf [~jerryf@user/jerryf] has joined #openbsd 19:00 -!- zayd [~zayd@user/zayd] has joined #openbsd 19:00 -!- mw [~mw@ripley.0x6d77.org] has joined #openbsd 19:02 -!- jerryf_ [~jerryf@user/jerryf] has quit [Ping timeout: 240 seconds] 19:05 -!- jerryf_ [~jerryf@user/jerryf] has joined #openbsd 19:08 -!- jerryf [~jerryf@user/jerryf] has quit [Ping timeout: 240 seconds] 19:08 -!- adig [~default@2a02:2f0e:fa11:9201:312c:c9b:2577:7843] has joined #openbsd 19:10 -!- Echoz [~chris@user/echoz] has quit [Ping timeout: 260 seconds] 19:10 -!- EtherNet [~ethernet@user/ethernet] has quit [Ping timeout: 252 seconds] 19:19 -!- Echoz [~chris@user/echoz] has joined #openbsd 19:29 -!- ivdsangen [~ivo@83-84-59-127.cable.dynamic.v4.ziggo.nl] has quit [Quit: leaving] 19:32 -!- feriman [~feriman@user/feriman] has joined #openbsd 19:38 -!- ivdsangen [~ivo@83-84-59-127.cable.dynamic.v4.ziggo.nl] has joined #openbsd 19:41 -!- izder456 [~izder456@syn-035-148-122-041.res.spectrum.com] has quit [Quit: Client closed] 19:43 -!- CrashOverride [~strcat@p5485477f.dip0.t-ipconnect.de] has quit [Ping timeout: 252 seconds] 19:43 -!- psydroid [~psydroid@user/psydroid] has quit [Ping timeout: 260 seconds] 19:45 -!- nhill [~nhill@99-147-119-82.lightspeed.jcsnms.sbcglobal.net] has joined #openbsd 19:46 -!- nhill [~nhill@99-147-119-82.lightspeed.jcsnms.sbcglobal.net] has left #openbsd [] 19:50 -!- skippy8 [~skippy8@user/Skippy8] has quit [Quit: WeeChat 4.6.3] 19:51 -!- psydroid [~psydroid@user/psydroid] has joined #openbsd 19:56 -!- ruidx [~zk@46.19.64.169] has quit [Quit: WeeChat 3.8] 20:04 -!- dogg0 [~dogg0@user/dogg0] has quit [Ping timeout: 248 seconds] 20:06 -!- textmode [~textmode@81-235-203-183-no205.tbcn.telia.com] has quit [Quit: leaving] 20:06 -!- comradeCrow [~comradeCr@99-110-128-132.lightspeed.irvnca.sbcglobal.net] has joined #openbsd 20:08 -!- ivdsangen [~ivo@83-84-59-127.cable.dynamic.v4.ziggo.nl] has quit [Quit: leaving] 20:12 -!- pony [sid524992@smol/hors] has quit [] 20:30 -!- slow99 [~slow99@user/slow99] has joined #openbsd 20:32 -!- lotsen [~lotsen@user/Lotsen] has quit [Remote host closed the connection] 20:49 -!- accelera` [~user@186.167.85.82] has joined #openbsd 20:50 -!- accelerat0r [~user@user/accelerat0r] has quit [Remote host closed the connection] 20:53 -!- accelera` [~user@186.167.85.82] has quit [Remote host closed the connection] 20:53 -!- pony [sid524992@smol/hors] has joined #openbsd 20:55 -!- Aedil [~adrian@188.193.3.19] has quit [Quit: leaving] 20:58 -!- CrimeWave [~Montreal@user/CrimeWave] has joined #openbsd 21:04 -!- cobra [~cobra@user/Cobra] has quit [Ping timeout: 276 seconds] 21:04 -!- user71 [~user71@2001:1530:1011:383f:1961:38ff:fcc8:9795] has quit [Quit: Leaving] 21:04 -!- hygo [~hygo@152.250.155.64] has joined #openbsd 21:06 -!- cobra [~cobra@user/Cobra] has joined #openbsd 21:08 -!- six [~six@user/six] has joined #openbsd 21:09 -!- Xenguy_ is now known as Xenguy 21:29 -!- ruidx [~zk@46.19.64.169] has joined #openbsd 21:31 -!- c0co [~c0co@user/c0co] has quit [Read error: Connection reset by peer] 21:33 -!- tvtoon [~The_cUnix@user/tvtoon] has joined #openbsd 21:35 -!- psydroid2 [~psydroid@user/psydroid] has quit [Quit: KVIrc 5.2.6 Quasar http://www.kvirc.net/] 21:46 -!- Hackerpcs [~user@user/hackerpcs] has quit [Quit: Hackerpcs] 21:50 -!- el_pepe [~ed@user/el-pepe:51868] has quit [Ping timeout: 252 seconds] 21:52 -!- el_pepe [~ed@user/el-pepe:51868] has joined #openbsd 21:56 -!- yclept [~yclept@user/yclept] has quit [Remote host closed the connection] 22:00 -!- el_pepe [~ed@user/el-pepe:51868] has quit [Quit: WeeChat 4.5.2] 22:01 -!- shiranaihito_ [~shiranaih@ppp-58-11-158-201.revip2.asianet.co.th] has quit [Quit: My Mac has gone to sleep. ZZZzzz…] 22:04 -!- mk_ [~mk@user/mk-:55564] has quit [Quit: ZNC 1.9.1 - https://znc.in] 22:06 -!- euphores [~SASL_euph@user/euphores] has quit [Ping timeout: 252 seconds] 22:06 -!- EtherNet [~ethernet@user/ethernet] has joined #openbsd 22:07 -!- mk_ [~mk@user/mk-:55564] has joined #openbsd 22:08 -!- lavaball [~Melissa@31.204.155.215] has quit [Remote host closed the connection] 22:09 -!- tarxvfz [~tarxvfz@gateway/tor-sasl/tarxvfz] has quit [Quit: tarxvfz] 22:10 -!- Poltawer [~xt003@user/Poltawer] has quit [Quit: WeeChat 4.7.0] 22:30 -!- elarks [~yerri@user/yerrii] has quit [Quit: WeeChat 4.5.2] 22:39 -!- drathir_tor [~drathir@wireguard/tunneler/drathir] has quit [Ping timeout: 240 seconds] 22:40 -!- jkossen [~jochem@user/jkossen] has quit [Ping timeout: 248 seconds] 22:40 -!- jkossen [~jochem@user/jkossen] has joined #openbsd 22:42 -!- Hackerpcs [~user@user/hackerpcs] has joined #openbsd 22:42 -!- Hackerpcs [~user@user/hackerpcs] has quit [Max SendQ exceeded] 22:44 -!- Hackerpcs [~user@user/hackerpcs] has joined #openbsd 22:44 -!- Hackerpcs [~user@user/hackerpcs] has quit [Max SendQ exceeded] 22:46 -!- runelind [~runelind@user/runelind] has quit [Ping timeout: 252 seconds] 22:47 -!- runelind [~runelind@user/runelind] has joined #openbsd 22:50 -!- jgh [~jgh@hellmouth.gulag.org.uk] has quit [Remote host closed the connection] 22:51 -!- Hackerpcs [~user@user/hackerpcs] has joined #openbsd 22:51 -!- Hackerpcs [~user@user/hackerpcs] has quit [Max SendQ exceeded] 22:51 -!- apac [~alexander@user/apac] has quit [Ping timeout: 245 seconds] 22:57 -!- Hackerpcs [~user@user/hackerpcs] has joined #openbsd 22:58 -!- Hackerpcs [~user@user/hackerpcs] has quit [Max SendQ exceeded] 22:59 -!- dogg0 [~dogg0@user/dogg0] has joined #openbsd 22:59 -!- Hackerpcs [~user@user/hackerpcs] has joined #openbsd 23:04 -!- mbuhl [~mbuhl@user/mbuhl] has quit [Remote host closed the connection] 23:04 -!- runelind_ [~runelind@user/runelind] has joined #openbsd 23:04 -!- runelind [~runelind@user/runelind] has quit [Ping timeout: 248 seconds] 23:05 -!- mbuhl [~mbuhl@user/mbuhl] has joined #openbsd 23:16 -!- sjg [~sjg@user/sjg] has quit [Ping timeout: 240 seconds] 23:17 -!- sjg_ [~sjg@user/sjg] has joined #openbsd 23:17 -!- paramon [~paramon@193.161.14.121] has joined #openbsd 23:23 -!- paramon [~paramon@193.161.14.121] has quit [Changing host] 23:23 -!- paramon [~paramon@user/paramon] has joined #openbsd 23:26 -!- paramon [~paramon@user/paramon] has quit [Quit: leaving] 23:30 -!- paramon [~paramon@user/paramon] has joined #openbsd 23:32 -!- feriman [~feriman@user/feriman] has quit [Ping timeout: 248 seconds] 23:33 -!- amadaluzia [~amadaluzi@user/amadaluzia] has quit [Quit: ZNC 1.10.1 - https://znc.in] 23:36 -!- sjg_ [~sjg@user/sjg] has quit [Ping timeout: 252 seconds] 23:38 -!- sjg [~sjg@user/sjg] has joined #openbsd 23:38 -!- sweatiest [~znc@user/sweatiest] has quit [Ping timeout: 240 seconds] 23:41 -!- sweatiest [~znc@user/sweatiest] has joined #openbsd 23:47 -!- byteskeptical [~amnesia@user/byteskeptical] has joined #openbsd 23:47 -!- paramon [~paramon@user/paramon] has quit [Quit: Lost terminal] 23:48 -!- amadaluzia [~amadaluzi@user/amadaluzia] has joined #openbsd 23:49 -!- talisc [~user@user/talisc] has joined #openbsd 23:49 -!- talisc [~user@user/talisc] has quit [Remote host closed the connection] 23:50 -!- talisc [~user@user/talisc] has joined #openbsd 23:50 < talisc> Hello 23:50 < talisc> guys 23:51 < talisc> im getting some weird graphical glitches on my firefox 23:51 -!- cavecanem2 [~cavecanem@user/cavecanem] has joined #openbsd 23:53 -!- cavecanem [~cavecanem@user/cavecanem] has quit [Ping timeout: 240 seconds] 23:53 -!- cavecanem2 is now known as cavecanem 23:55 < talisc> anywau 23:55 < talisc> way* 23:55 < talisc> i have to go 23:55 < talisc> i will see a fix for this latter 23:56 -!- talisc [~user@user/talisc] has left #openbsd [ERC 5.6.0.30.1 (IRC client for GNU Emacs 30.1)] --- Log closed Tue Aug 05 00:00:52 2025