mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 19:25:25 +03:00
https://iipimage.sourceforge.net IIPImage image server: iipsrv. An advanced high-performance image server for high-resolution and scientific images
14 lines
262 B
Bash
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
|
|
}
|