mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 11:45:18 +03:00
An open source, self-hosted implementation of the Tailscale control server https://github.com/juanfont/headscale
6 lines
157 B
Bash
6 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
|