mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-28 06:13:31 +01:00
Have zero_length_keys.sh use an empty torrc file.
Fixes 15033; bugfix on 0.2.6.3-alpha.
This commit is contained in:
parent
51df1f9906
commit
d7fcaca3fc
4
changes/bug15033
Normal file
4
changes/bug15033
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
o Minor bugfixes (tests):
|
||||||
|
- When running the zero-length-keys check, do not use the default
|
||||||
|
torrc file. Fixes bug 15033; bugfix on 0.2.6.3-alpha. Reported
|
||||||
|
by "reezer".
|
@ -36,9 +36,11 @@ if [ ! -d "$DATA_DIR" ]; then
|
|||||||
fi
|
fi
|
||||||
trap "rm -rf '$DATA_DIR'" 0
|
trap "rm -rf '$DATA_DIR'" 0
|
||||||
|
|
||||||
|
touch "$DATA_DIR"/empty_torrc
|
||||||
|
|
||||||
# DisableNetwork means that the ORPort won't actually be opened.
|
# DisableNetwork means that the ORPort won't actually be opened.
|
||||||
# 'ExitRelay 0' suppresses a warning.
|
# 'ExitRelay 0' suppresses a warning.
|
||||||
TOR="./src/or/tor --hush --DisableNetwork 1 --ShutdownWaitLength 0 --ORPort 12345 --ExitRelay 0"
|
TOR="./src/or/tor --hush --DisableNetwork 1 --ShutdownWaitLength 0 --ORPort 12345 --ExitRelay 0 -f $DATA_DIR/empty_torrc"
|
||||||
|
|
||||||
if [ -s "$DATA_DIR"/keys/secret_id_key ] && [ -s "$DATA_DIR"/keys/secret_onion_key ] &&
|
if [ -s "$DATA_DIR"/keys/secret_id_key ] && [ -s "$DATA_DIR"/keys/secret_onion_key ] &&
|
||||||
[ -s "$DATA_DIR"/keys/secret_onion_key_ntor ]; then
|
[ -s "$DATA_DIR"/keys/secret_onion_key_ntor ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user