diff --git a/systemd/glorytun-setup b/systemd/glorytun-setup index e3afada..51536b5 100755 --- a/systemd/glorytun-setup +++ b/systemd/glorytun-setup @@ -33,4 +33,10 @@ touch "$FILE.key" chmod 600 "$FILE.key" echo "$KEY" > "$FILE.key" -echo "Done" +_ask "Start glorytun now ? (enter to skip)" START +case "$START" in + y*|Y*) + systemctl restart systemd-networkd + systemctl start glorytun@"$NAME" + ;; +esac