Eicke Herbertz
Eicke Herbertz
Only the mask on `AllowedIPs` on the server matters for that IP restriction, as it will reject any traffic not originating from a matching IP, and that's set to `/32`....
I'm not a Go developer, but upon further investigation, I managed to understand the cause. Unpacking a tar file depends on calling dockers own `reexec`-Module right at the beginning of...
Ah, it took some time, but I think I get it: `SerialPortBuilder` is actually re-exported all the way from the `serialport` crate. That's why `open()` returns some `Box` and not...
`systemd` advances the clock to `TIME_EPOCH` early, but in post-initrd time. The log says "build time", but it uses `stat -c %Y NEWS` and thats `1550139118 (2019-02-14T10:11:58+00:00)` for me (according...
Also, /var is required to be writable, $bootloader may be read-only. What kind of hardware workarounds are you thinking of? --- Of course, we could just load the time with...
You can shove a timestamp wherever you want (just change the `$clock_file` path), but when we are searching for a systemd-solution, we shouldn't start relying on the bootloader, and especially...
How exactly does the shutdown sequence work? I'm now at ```bash last_ts=$(stat -c %Y "$clock_file") uptime=$(cut -d. -f1 /proc/uptime) ts=$((last_ts + uptime + 2)) date --set=@$ts ``` And that magic...
> Is it worth considering filesystem metadata? I thought about that as well. In my head it's more generic, a "non-file location". Do other filesystems have this as well? Does...
> Where does the "+2" come from? Is this your boottime till the service hits? > Just copied from [#662 (comment)](https://github.com/systemd/systemd/issues/662#issuecomment-1018667933). > > As far as I understand, this should...
Sorry I'm late, but I'd suggest another solution: Allow multiple pairs of host and token in the global config file. If the remote of the repository matches a host entry,...