mirror of
https://github.com/wahyd4/kt-connect.git
synced 2026-08-10 22:05:57 +10:00
9 lines
210 B
Bash
9 lines
210 B
Bash
#!/bin/bash
|
|
/usr/sbin/sshd -D &
|
|
|
|
if [[ "${1}" = "--debug" ]]; then
|
|
/usr/sbin/dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec /usr/sbin/kt-shadow
|
|
else
|
|
/usr/sbin/kt-shadow
|
|
fi
|