Kai Lüke
Kai Lüke
> The iso generated by ProxmoxVE contains multiple files including userdata AND network-config Ah, right, it has two separate files and already roughly follows https://cloudinit.readthedocs.io/en/latest/reference/datasources/vmware.html#walkthrough-of-guestinfo-keys-transport similar to the case with...
In a test with `mkosi qemu` and `usr.local` pointing to `/usr` I ran into this: ``` fedora kernel: overlayfs: upper fs missing required features. fedora kernel: overlayfs: upper fs does...
How would the ephemeral option work? The workdir needs to be in the same mount point, so it won't work to directly have the `etc.local` (or how it's named) subdirectly...
Am I doing something wrong? This is with `mkosi --format=disk` `mkosi --format=disk qemu`: ``` mkdir -p /var/lib/extensions.mutable/usr mkdir -p /etc/extensions/test/usr/lib/extension-release.d echo ID=_any > /etc/extensions/test/usr/lib/extension-release.d/extension-release.test systemd-sysext merge Assertion 'prefix' failed at...
Thanks, works now. I've also tried the "symlink to original" case: ``` mkdir -p /var/lib/confexts/test/etc/extension-release.d echo ID=_any > /var/lib/confexts/test/etc/extension-release.d/extension-release.test mkdir -p /var/lib/extensions.mutable ln -s /etc /var/lib/extensions.mutable/etc systemd-confext merge ```
Wait, after a reboot with the [minimal sysext](https://github.com/systemd/systemd/pull/31000#issuecomment-1948294242) applied and no "mutable" entry it now fails to execute services `systemd-oomd.service: Failed to execute /usr/lib/systemd/systemd-oomd: Permission denied`. (The effective mount options...
Since you are using k3s, which is Kubernetes, I think you could rather use FLUO https://github.com/flatcar/flatcar-linux-update-operator/ or kured https://github.com/kubereboot/kured/ instead of locksmith, or?
We can also use a Jenkins resource lock to limit parallel runs (or resource labels for partitioned parallel use but with the idea to check the capacity live this would...
Systemd 254 adds cap_wake_alarm by default in pam_systemd https://github.com/systemd/systemd/blob/0e2f18eedd6b9be32b1c1122dcd2c30319074c7f/NEWS#L703 and now it's very easy to run into this error, e.g., `phosh.service` uses `PAMName=login` and thus gets this capability and then...
You can have a look at `statvfs` here: https://gitlab.gnome.org/GNOME/gnome-disk-utility/blob/master/src/libgdu/gduutils.c#L1713