Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
adrelanos committed Dec 25, 2023
1 parent 41bc6e8 commit 8173414
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions usr/libexec/setup-dist/ft_m_1
Expand Up @@ -83,12 +83,12 @@ fi
## 3. restart Tor using systemd

/usr/libexec/helper-scripts/repair-torrc
error_msg="$(python3 -c 'from tor_control_panel import tor_status; tor_status.set_enabled()' 2>&1)" || { exit_code="$?" ; true; };
error_msg="$(python3 -c 'from anon_connection_wizard import tor_status; tor_status.set_enabled()' 2>&1)" || { exit_code="$?" ; true; };

if [ "$exit_code" != "0" ]; then
TITLE="setup-dist - Error!"
MSG="
python3 -c 'from tor_control_panel import tor_status; tor_status.set_enabled()'
python3 -c 'from anon_connection_wizard import tor_status; tor_status.set_enabled()'
returned exit code $exit_code, which means failed to enable Tor.
Error messages are as follows:
Expand Down

0 comments on commit 8173414

Please sign in to comment.