mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-17 05:05:14 +03:00
Since the upgrade we can drop the own go.mod and go.sum files. I also removed the config dir ownership. Also check is enabled because testing works.
9 lines
171 B
Bash
9 lines
171 B
Bash
#!/bin/sh
|
|
|
|
user=tlsrouter
|
|
group=tlsrouter
|
|
|
|
addgroup -S tlsrouter 2>/dev/null
|
|
adduser -S -D -h /var/lib/$user -s /sbin/nologin -G $group -g $user $user 2>/dev/null
|
|
|
|
exit 0
|