mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-03 12:28:17 +02:00
7 lines
143 B
Text
7 lines
143 B
Text
|
#!/bin/sh
|
||
|
|
||
|
addgroup -S gotify 2>/dev/null
|
||
|
adduser -S -D -h /var/lib/gotosocial -s /sbin/nologin -G gotify -g gotify gotify 2>/dev/null
|
||
|
|
||
|
exit 0
|