Morten Linderud

Results 465 comments of Morten Linderud

Thanks for the work! I'll mark this as next on my todo and consider patching our fuse-overlayfs package

For testing purposes I have published `fuse-overlayfs-1.0.0-2` which adds the symlink patch

Zomg! It works! I managed to rebuild `archlinux-keyring`! There are a few issues which I need to look at. `/build` in the container is created with uid `166535` instead of...

```bash function build_package(){ ## [snip] mkdir -p "./build" for pkgfile in "$BUILDDIRECTORY/$build"/pkgdest/*; do mv "$pkgfile" "./build/" done chown -R "$src_owner" "./build" } ``` This logic doesn't work for rootless container....

Current todo for this draft - [ ] Rebase against latest master still missing (also reindent from tab to 4 spaces) - [ ] Need to figure out what to...

There is no exit code from pacman, so we either need to parse the output or do something else.

For parsing efivarfs you can look at my library; https://github.com/Foxboron/go-uefi There is also one from canonical: https://github.com/canonical/go-efilib

You don't really need to parse it unless you want to resign it. If you have the Microsoft Key Exchange Key enrolled you can do: ```go package main import (...