mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-18 07:02:29 +01:00
Now that we have openrc 0.41.2, supervise-daemon is actually usable. Minio also behaves much nicer with it.
24 lines
658 B
Plaintext
24 lines
658 B
Plaintext
#!/sbin/openrc-run
|
|
supervisor=supervise-daemon
|
|
healthcheck_timer=30
|
|
|
|
name='Minio Block Storage Server'
|
|
command=/usr/bin/minio
|
|
command_args="server \
|
|
${address:+--address=$address} \
|
|
$MINIO_OPTS \
|
|
$MINIO_VOLUMES"
|
|
command_user="minio:minio"
|
|
|
|
start_pre() {
|
|
# the conf.d file might contain secrets!
|
|
[ -f "/etc/conf.d/${RC_SVCNAME}" ] && checkpath --file --mode 0600 --owner root:root "/etc/conf.d/${RC_SVCNAME}"
|
|
# make sure the default volume exists
|
|
checkpath --directory --mode 0700 --owner minio:minio "/srv/${RC_SVCNAME}"
|
|
}
|
|
|
|
healthcheck() {
|
|
[ -x /usr/bin/curl ] || return 0
|
|
/usr/bin/curl -q "$address"/minio/health/ready
|
|
}
|