summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikle Kolyada <zlogene@gentoo.org>2021-01-26 19:27:31 +0300
committerMikle Kolyada <zlogene@gentoo.org>2021-01-26 19:28:16 +0300
commit484871c90391456c214eff7d25c3d6a8295b0fe9 (patch)
tree6967c0f522c83d35e84a860aacb2bc3dfa6b7520 /net-fs/minio/files
parentapp-backup/backupninja: bump to 1.2.1 and new homepage (diff)
downloadgentoo-484871c90391456c214eff7d25c3d6a8295b0fe9.tar.gz
gentoo-484871c90391456c214eff7d25c3d6a8295b0fe9.tar.bz2
gentoo-484871c90391456c214eff7d25c3d6a8295b0fe9.zip
net-fs/minio: add systemd support
Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
Diffstat (limited to 'net-fs/minio/files')
-rw-r--r--net-fs/minio/files/minio.default4
-rw-r--r--net-fs/minio/files/minio.service30
2 files changed, 34 insertions, 0 deletions
diff --git a/net-fs/minio/files/minio.default b/net-fs/minio/files/minio.default
new file mode 100644
index 000000000000..769e01950b22
--- /dev/null
+++ b/net-fs/minio/files/minio.default
@@ -0,0 +1,4 @@
+MINIO_ACCESS_KEY="minio"
+MINIO_VOLUMES="/var/lib/minio"
+MINIO_OPTS="-C /etc/minio --address 127.0.0.1:9000"
+MINIO_SECRET_KEY="miniostorage"
diff --git a/net-fs/minio/files/minio.service b/net-fs/minio/files/minio.service
new file mode 100644
index 000000000000..21ee9f4768fd
--- /dev/null
+++ b/net-fs/minio/files/minio.service
@@ -0,0 +1,30 @@
+[Unit]
+Description=MinIO
+Documentation=https://docs.min.io
+Wants=network-online.target
+After=network-online.target
+AssertFileIsExecutable=/usr/bin/minio
+
+[Service]
+User=minio
+Group=minio
+
+EnvironmentFile=/etc/default/minio
+ExecStartPre=/bin/sh -c "if [ -z \"${MINIO_VOLUMES}\" ]; then echo \"Variable MINIO_VOLUMES not set in /etc/default/minio\"; exit 1; fi"
+
+ExecStart=/usr/bin/minio server $MINIO_OPTS $MINIO_VOLUMES
+
+# Let systemd restart this service always
+Restart=always
+
+# 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=infinity
+SendSIGKILL=no
+
+[Install]
+WantedBy=multi-user.target
+
+# Built for ${project.name}-${project.version} (${project.name})