1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 19:25:25 +03:00
aports/testing/iipsrv/iipsrv.initd
Ruven 2f0e618e8b testing/iipsrv: new aport
https://iipimage.sourceforge.net
IIPImage image server: iipsrv. An advanced high-performance image server for high-resolution and scientific images
2023-10-05 05:22:59 +00:00

14 lines
262 B
Bash

#!/sbin/openrc-run
description="IIPImage server"
supervisor=supervise-daemon
command="/usr/bin/iipsrv"
command_args="--bind $HOST:$PORT"
command_user="iipsrv:wheel"
start_pre() {
# Make sure logfile is writable
touch $LOGFILE
chown iipsrv:wheel $LOGFILE
}