mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 13:46:41 +02:00
5 lines
163 B
Bash
5 lines
163 B
Bash
#!/bin/sh
|
|
addgroup -S prometheus 2>/dev/null
|
|
adduser -SDh/var/lib/prometheus \
|
|
-s/sbin/nologin -Gprometheus -gprometheus prometheus prometheus 2>/dev/null
|
|
exit 0
|