syncthing-runit pkg Yesterday at 21:12:48 Hi,The `syncthing-runit` package (from 2014) does not work for me:- the service does not get up - `sv start syncthing` just replies with: "timeout: down: syncthing: 0s, normally up, want up"- the `log/run` contains a `logger` and not `svlogd` - there is no logs at `/var/log/syncthing` to check why this is happeningI can make it run by doing `su "$USER" -c syncthing` but I guess this is "bad".So my questions are:- does this happens with anyone else?- what is the difference between `chpst -u "$USER"` and `su "$USER"`?- how do I get the logs from this service without altering anything?For the record:the `run` original content is the following:```sh#!/bin/sh[ -r conf ] && . ./confexec 2>&1exec chpst -u "$USER" syncthing -logflags 0```the `log/run`original content is the following:```sh#!/bin/shexec logger -t syncthing```Thank you