rdpgw/dev/docker/run.sh
Bolke de Bruin a21b266e0d Add run
2024-03-18 14:11:40 +01:00

11 lines
192 B
Bash
Executable file

#!/bin/sh
cd /opt/rdpgw || exit 1
if ! [ -e /opt/rdpgw/rdpgw.yaml ]; then
cp /opt/rdpgw/rdpgw.yaml.default /opt/rdpgw/rdpgw.yaml
fi
/opt/rdpgw/rdpgw-auth &
/opt/rdpgw/rdpgw &
wait
exit $?