9 lines
367 B
Bash
Executable File
9 lines
367 B
Bash
Executable File
#! /bin/sh
|
|
[ ! -e "/home/$ANTOS_USER" ] && ln -sf /app/home "/home/$ANTOS_USER"
|
|
adduser --home "/home/$ANTOS_USER" --disabled-password --gecos "" "$ANTOS_USER"
|
|
echo -e "$ANTOS_PASSWORD\n$ANTOS_PASSWORD" | passwd "$ANTOS_USER"
|
|
# start antd-tunnel service
|
|
/usr/bin/antd /app/antd-config.ini &
|
|
sleep 1
|
|
[ -f /app/runner.ini ] && /opt/www/bin/runner /app/runner.ini &
|
|
wait |