mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-01 23:08:10 +02:00
7 lines
150 B
Text
7 lines
150 B
Text
|
#!/bin/sh
|
||
|
|
||
|
addgroup -S sentinel 2>/dev/null
|
||
|
adduser -S -D -H -h /dev/null -s /sbin/nologin -G sentinel -g sentinel-proxy sentinel 2>/dev/null
|
||
|
|
||
|
exit 0
|