mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
9 lines
159 B
Bash
9 lines
159 B
Bash
#!/bin/sh
|
|
|
|
|
|
# add barkery user
|
|
addgroup -S barkery 2>/dev/null
|
|
adduser -S -D -H -h /dev/null -s /bin/nologin -G barkery -g barkery barkery 2>/dev/null
|
|
|
|
exit 0
|