mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-21 13:41:20 +02:00
An open source, self-hosted implementation of the Tailscale control server https://github.com/juanfont/headscale
7 lines
157 B
Bash
7 lines
157 B
Bash
#!/bin/sh
|
|
|
|
addgroup -S headscale 2>/dev/null
|
|
adduser -S -D -H -h /var/lib/headscale -s /sbin/nologin -G headscale -g headscale headscale 2>/dev/null
|
|
|
|
exit 0
|