mirror of
https://oauth2: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@github.com/m1ngsama/TNT.git
synced 2026-06-26 05:44:38 +08:00
10 lines
204 B
Bash
Executable file
10 lines
204 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
if [ "$1" = "configure" ] && ! getent passwd tnt >/dev/null; then
|
|
adduser --system --group --home /var/lib/tnt --no-create-home --gecos "TNT chat server" tnt
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|