mirror of
https://github.com/bolkedebruin/rdpgw.git
synced 2025-08-14 04:49:18 +02:00
11 lines
192 B
Bash
Executable file
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 $?
|