New comment by thetredev on void-packages repository https://github.com/void-linux/void-packages/issues/40861#issuecomment-1475255237 Comment: @leahneukirchen I'm having trouble installing the service via `vsv`. What I did: ```shell $ cat srcpkgs/open-iscsi/files/iscsid/run #!/bin/sh exec 2>&1 [ -r conf ] && . ./conf exec iscsid -f ``` ```shell $ stat -c '%a' srcpkgs/open-iscsi/files/iscsid/run 755 ``` ```shell $ cat srcpkgs/open-iscsi/template .... post_install() { vsv iscsid } .... ``` ```shell $ ./xbps-src binary-bootstrap $ ./xbps-src pkg open-iscsi > build.open-iscsi.log ``` [build.open-iscsi.log](https://github.com/void-linux/void-packages/files/11011132/build.open-iscsi.log) ```shell $ sudo xbps-install --repository hostdir/binpkgs open-iscsi Name Action Version New version Download size libisns install - 0.102_1 - open-iscsi install - 2.1.8_1 - Size required on disk: 2103KB Space available on disk: 634GB Do you want to continue? [Y/n] [*] Verifying package integrity libisns-0.102_1: verifying RSA signature... open-iscsi-2.1.8_1: verifying RSA signature... [*] Collecting package files libisns-0.102_1: collecting files... open-iscsi-2.1.8_1: collecting files... [*] Unpacking packages libisns-0.102_1: unpacking ... open-iscsi-2.1.8_1: unpacking ... File `./etc/iscsi/initiatorname.iscsi' exists, installing configuration file to `./etc/iscsi/initiatorname.iscsi.new-2.1.8_1'. [*] Configuring unpacked packages libisns-0.102_1: configuring ... libisns-0.102_1: installed successfully. open-iscsi-2.1.8_1: configuring ... open-iscsi-2.1.8_1: installed successfully. 0 downloaded, 2 installed, 0 updated, 2 configured, 0 removed. ``` ```shell $ ls /etc/sv/iscsid ls: cannot access '/etc/sv/iscsid': No such file or directory ``` `vsv` doesn't install `iscsid` for some reason. Can you help me with this? Thanks!