[05:22] How would I get ubuntu 22.04 to not configure enp1s0? I tried to remove every systemd-networkd config and netplan even. but for some reason I can't find the config file which sets dhcp [05:55] hm figured netplan out (for a bit at least) but now netplan complains about the unknown key "bridges:" :( === Hash is now known as stoned === Chunkyz is now known as jailbreak [12:25] hm, I'm not getting the replies to my emails in this list: https://alioth-lists.debian.net/pipermail/pkg-samba-maint/2022-June/thread.html [12:25] specifically, from Michael [12:25] other posts arrive fine [12:37] ah, found one [12:38] was in the spam folder, n/m. I thought I had checked it, but I clearly missed it [12:39] it didn't come through the list, though, there are no list headers, that's why my filter didn't catch it [19:40] kanashiro: you probably have more goland experience, could you give me a quick hint/help on how to build https://github.com/ubuntu/adsys from source? [19:40] I tried go install -v ./... [19:41] but that did not give me the expected binaries in ~/go/bin [19:41] d/rules is https://github.com/ubuntu/adsys/blob/main/debian/rules [19:42] I guess it's the "go generate tools ./..." that I'm missing [19:42] (why is that done in install, not build?) [19:42] ahasenack, let me check [19:47] ahasenack, did you get this error when building it? https://paste.ubuntu.com/p/67JzhN2W9v/ [19:47] kanashiro: no [19:48] ah, this is being executed in my host system, not in the chroot [19:48] you need to build it in the same release that is your target [19:51] I'm doing it in an lxc [19:51] I am setting up a container to try it again [19:52] go mod vendor now works with golang 1.18 [19:52] but got some test failures [19:53] what's the one liner to build this? [19:53] i.e., "make" [19:54] in the container I only tried "debuild -us -uc" [19:54] I know how to build the package :) [19:54] I want the "git clone && build" aproach [19:54] I am not teaching you, I just told you what I did :) [19:59] ahasenack, did you run "go build"? [19:59] this command "go build -mod=vendor ./cmd/adsysd/" gives me the adsysd binary [20:00] hm [20:00] in the source tree, not in ~/go/bin [20:00] I did that, but didn't find the binary before. Now I find it, odd [20:01] ah, sorry [20:01] it's a directory, not binary [20:01] https://paste.ubuntu.com/p/bJC2mFXhBv/ [20:01] `find . -name adsysd -type f` is empty after "go build" [20:02] your incantation is what I was looking for (how to find it?) [20:02] with the extra magical parameters to go build [20:03] your command actually failed terribly here, hmm [20:03] if you have the deps in the vendor directory, all you need is "go build -mod=vendor ./cmd/adsysd/" [20:03] https://pastebin.ubuntu.com/p/pHTSzTY4X8/ [20:03] I don't know if I have the deps [20:03] I did "git clone" and now I want to build :) [20:04] run "go mod vendor" [20:04] doesn't go fetch its own deps? [20:04] "go mod vendor" is downloading stuff [20:05] "go build" alone didn't produce a binary [20:05] let me try now that other incantation [20:06] ah, that seems to be the ticket [20:06] there you go [20:06] now I got the failure I was expecting (about LFS_CFLAGS not being used) [20:06] so "go mod vendor && go build -mod=vendor ./cmd/adsysd/" [20:06] piece of cake [20:06] yep [20:06] thx kanashiro [20:06] yw === g4mbit is now known as Guest6134 [20:21] hi to all