mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-22 02:35:23 +03:00
The home directory should be created by the package, not pre-install script; adduser copies skel files.
6 lines
137 B
Bash
6 lines
137 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S minio 2>/dev/null
|
|
adduser -S -D -H -h /var/lib/minio -s /sbin/nologin -G minio -g minio minio 2>/dev/null
|
|
|
|
exit 0
|