aports/testing/dcmtk/dcmtk.initd
Holger Jaekel 6966c87f03 testing/dcmtk: new aport
https://dcmtk.org/
OFFIS DICOM toolkit
2023-10-31 19:20:36 +00:00

21 lines
446 B
Bash

#!/sbin/openrc-run
CONFIG=/etc/dcmtk/dcmqrscp.cfg
depend() {
need net
}
start() {
ebegin "Starting DCMTK central test node dcmqrscp"
start-stop-daemon --start --quiet --background \
--make-pidfile --pidfile "/var/run/${SVCNAME}.pid" \
--exec /usr/bin/dcmqrscp -- -c "${CONFIG}"
eend ${?}
}
stop() {
ebegin "Stopping DCMTK central test node dcmqrscp"
start-stop-daemon --stop --quiet --pidfile "/var/run/${SVCNAME}.pid"
eend ${?}
}