mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-05 04:47:14 +02:00
8 lines
197 B
Bash
8 lines
197 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S prometheus 2>/dev/null
|
|
adduser -S -D -h /var/lib/prometheus \
|
|
-s /sbin/nologin -G prometheus -g prometheus prometheus prometheus 2>/dev/null
|
|
adduser prometheus disk
|
|
|
|
exit 0
|