mirror of
https://github.com/clearml/dropbear
synced 2025-01-31 02:46:58 +00:00
3939321750
The re-exec needs to know to use the dropbearmulti binary instead. Add a test for this case.
10 lines
192 B
Bash
Executable File
10 lines
192 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# symlink this to dropbear/dbclient/dropbearkey next to dropbearmulti
|
|
# good enough for testing purposes.
|
|
|
|
DIR=$(dirname $0)
|
|
PROG=$(basename $0)
|
|
exec $DIR/dropbearmulti $PROG "$@"
|
|
|