From 846c5ceb0a9c28c572d502b3e77b3d39abca3fcb Mon Sep 17 00:00:00 2001 From: necro-nemesis Date: Mon, 10 May 2021 12:38:38 -0400 Subject: [PATCH] move test after request to start exit node. --- installers/common.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/installers/common.sh b/installers/common.sh index 519c484..32b144c 100644 --- a/installers/common.sh +++ b/installers/common.sh @@ -106,9 +106,6 @@ function configure_exit() { echo -e " Thank you for using SBC Lokinet Micro Exit " echo -e " by Minotaurware.net " install_log "SBC Lokinet Micro Exit setup has completed your installation" - IP="127.3.2.1" - exit_address=$(host -t cname localhost.loki $IP | awk '/alias for/ { print $6 }') - install_warning "Your Lokinet Address is:\nhttp://${exit_address}" echo -n "Do you wish to immediately go live with the exit? [y/N]: " read answer if [[ $answer != "y" ]]; then @@ -117,6 +114,9 @@ function configure_exit() { fi install_log "Exit Launching" sudo systemctl restart lokinet + IP="127.3.2.1" + exit_address=$(host -t cname localhost.loki $IP | awk '/alias for/ { print $6 }') + install_warning "Your Lokinet Exit Address is:\nhttp://${exit_address}" exit 0 || install_error "Unable to exit" }