mirror of
https://github.com/clearml/dropbear
synced 2025-01-31 02:46:58 +00:00
Avoid UNAUTH_CLOSE_DELAY when testing
Seeing if this fixes test failures
This commit is contained in:
parent
c4a0304b3f
commit
2e0a16c334
3
.github/workflows/build.yml
vendored
3
.github/workflows/build.yml
vendored
@ -140,7 +140,8 @@ jobs:
|
|||||||
if: ${{ matrix.nondefault }}
|
if: ${{ matrix.nondefault }}
|
||||||
run: |
|
run: |
|
||||||
# Turn on anything that's off by default. Rough but seems sufficient
|
# Turn on anything that's off by default. Rough but seems sufficient
|
||||||
grep ' 0$' default_options.h | sed 's/0$/1/' > localoptions.h
|
# UNAUTH_CLOSE_DELAY causes testing problems with lingering sockets, skip it.
|
||||||
|
grep ' 0$' default_options.h | grep -v UNAUTH_CLOSE_DELAY | sed 's/0$/1/' > localoptions.h
|
||||||
# PAM clashes with password
|
# PAM clashes with password
|
||||||
echo "#define DROPBEAR_SVR_PASSWORD_AUTH 0" >> localoptions.h
|
echo "#define DROPBEAR_SVR_PASSWORD_AUTH 0" >> localoptions.h
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user