mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-09 08:46:54 +02:00
11 lines
253 B
Bash
11 lines
253 B
Bash
#!/bin/sh -e
|
|
|
|
case "$1" in
|
|
configure)
|
|
if ! id zerotier-one >>/dev/null 2>&1; then
|
|
useradd --system --user-group --home-dir /var/lib/zerotier-one --shell /usr/sbin/nologin --no-create-home zerotier-one
|
|
fi
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|