pmaports/modem/tqftpserv/tqftpserv.initd
Minecrell d9326d5ac9
modem/tqftpserv: start before rmtfs (MR 3269)
Ideally tqftpserv should be started before rmtfs. This is because rmtfs
is currently responsible for starting the modem, and it's best for
performance if all the services needed by the modem are already up.

Also change "want" -> "use" for consistency with rmtfs. The difference
between "want" and "use" is that "want" just triggers starting of the
other service, while "use" also ensures that the other service starts
successfully.
2022-07-05 18:49:25 +02:00

10 lines
195 B
Text

#!/sbin/openrc-run
supervisor=supervise-daemon
name="tqftpserv"
description="Qualcomm Trivial File Transfer Protocol Server"
command="/usr/bin/tqftpserv"
depend() {
before rmtfs
use qrtr-ns
}