mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
8 lines
184 B
Bash
8 lines
184 B
Bash
#!/bin/sh
|
|
|
|
# Add the server user and group.
|
|
user=drawpile
|
|
addgroup -S $user 2>/dev/null
|
|
adduser -S -D -h /var/lib/drawpile -s /sbin/nologin -G $user -g $user $user 2>/dev/null
|
|
|
|
exit 0
|