mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-16 12:06:55 +02:00
11 lines
218 B
Bash
11 lines
218 B
Bash
#!/bin/sh -e
|
|
|
|
case "$1" in
|
|
configure)
|
|
if ! id zerotier-one >>/dev/null 2>&1; then
|
|
adduser --system --group --home /var/lib/zerotier-one --no-create-home zerotier-one
|
|
fi
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|