mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
7 lines
137 B
Bash
Executable file
7 lines
137 B
Bash
Executable file
#!/bin/sh
|
|
|
|
addgroup -S prometheus 2>/dev/null
|
|
adduser -S -D -H -s /bin/false -G prometheus -g prometheus prometheus 2>/dev/null
|
|
|
|
exit 0
|
|
|