#!/bin/env bash export MINIO_ROOT_USER=some_access_key export MINIO_ROOT_PASSWORD=some_secret_key curl https://minio.fqdn:port/minio/health/live if [[ $? -ne 0 ]] then /usr/local/bin/minio server \ --address :9000 \ --console-address :9001 /volume1/minio_share/data & # TLS 証明書のオプションはこれだけではダメだったため、現状は TLS 無しで実行中 # --certs-dir /usr/syno/etc/certificate/system/default \ fi