Browse Source

minio unit file and env file

torn 7 years ago
parent
commit
72b2923ec5
3 changed files with 39 additions and 19 deletions
  1. 0 15
      minio-wrapper.sh
  2. 8 0
      minio.env
  3. 31 4
      minio.service

+ 0 - 15
minio-wrapper.sh

@@ -1,15 +0,0 @@
-#!/bin/sh
-
-# Simple wrapper for Minio
-#
-# (torn, 2017-01-26)
-
-bin="/home/cable/minio/minio"
-conf="/home/cable/minio/conf/"
-buckets="/home/cable/minio/buckets/"
-addr="127.0.0.1:9000"
-
-export MINIO_BROWSER=off
-
-$bin server -C "$conf" --address "$addr" --quiet "$buckets"
-

+ 8 - 0
minio.env

@@ -0,0 +1,8 @@
+# Local export path.
+MINIO_VOLUMES="/home/cable/minio/buckets/"
+
+# Options
+MINIO_OPTS="-C /home/cable/minio/conf/ --address 127.0.0.1:9000 --quiet"
+
+MINIO_BROWSER=off
+

+ 31 - 4
minio.service

@@ -1,13 +1,40 @@
 [Unit]
-Description=Minio Cloud Storage
-After=network.target
+Description=Minio
+Documentation=https://docs.minio.io
+Wants=network-online.target
+After=network-online.target
 
 [Service]
-ExecStart=/home/cable/bin/minio-wrapper.sh
-Restart=on-failure
+WorkingDirectory=/home/cable/minio/
+
+EnvironmentFile=-/home/cable/minio/minio.env
+ExecStartPre=/bin/bash -c "[ -n \"${MINIO_VOLUMES}\" ] || echo \"Variable MINIO_VOLUMES\""
+ExecStart=/home/cable/minio/minio server $MINIO_OPTS $MINIO_VOLUMES
+
 User=cable
 Group=cable
+PermissionsStartOnly=true
+
+StandardOutput=journal
+StandardError=inherit
+
+# Specifies the maximum file descriptor number that can be opened by this process
+LimitNOFILE=65536
+
+# Disable timeout logic and wait until process is stopped
+TimeoutStopSec=0
+
+# SIGTERM signal is used to stop Minio
+KillSignal=SIGTERM
+
+SendSIGKILL=no
+
+SuccessExitStatus=0
+
+Restart=on-failure
 
 [Install]
 WantedBy=multi-user.target
 
+# Built for ${project.name}-${project.version} (${project.name})
+