mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
12 lines
183 B
Bash
12 lines
183 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S ktistec 2>/dev/null
|
|
adduser -S -D -H \
|
|
-h /var/lib/ktistec \
|
|
-s /sbin/nologin \
|
|
-G ktistec \
|
|
-g "Ktistec ActivityPub server" \
|
|
ktistec 2>/dev/null
|
|
|
|
exit 0
|