From fe1fc560df88a8f2435ad834d6d786c388f88297 Mon Sep 17 00:00:00 2001 From: necro-nemesis Date: Sat, 16 Apr 2022 21:16:59 -0400 Subject: [PATCH] Include status info with exit start --- config/lokilaunch.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/config/lokilaunch.sh b/config/lokilaunch.sh index e96756b..f19fbf0 100644 --- a/config/lokilaunch.sh +++ b/config/lokilaunch.sh @@ -40,10 +40,12 @@ bootstrap) exitup) if [ "$3" = "" ]; then lokinet-vpn --up --exit "$2" - echo -n "lokinet --vpn --exit ""$2" + echo -n "lokinet --vpn --exit "$2"\n" + lokinet-vpn --status else lokinet-vpn --up --exit "$2" --token "$3" - echo -n "lokinet-vpn --up --exit ""$2"" --token ""$3" + echo -n "lokinet-vpn --up --exit "$2" --token "$3"\n" + lokinet-vpn --status fi ;;