New issue by jfcolom on void-packages repository https://github.com/void-linux/void-packages/issues/31690 Description: ### System * package: *deluge-2.0.3_10 ### Expected behavior `deluged` service should start up with `deluge` system user, and therefore, get/set its configuration files from /var/lib/deluge/.config/deluge ### Actual behavior It is starts with `root` and, therefore, it gets/sets the configuration from /root/.config/deluge. As it cannot write there after that, there are some permission errors and it does not start properly. ### Workaround In `/etc/sv/deluged/run`, replace `exec deluged -d -U deluge -g deluge ${OPTS} 2>&1` by `exec chpst -u deluge:deluge deluged -d -U deluge -g deluge ${OPTS} 2>&1`