blob: 2e673aef963545177b40c42530585d5a8d9a6384 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/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 --no-create-home zerotier-one
fi
;;
esac
#DEBHELPER#
|