From 0d05a05eaa4d3a1a3fc682eb9548e56d16751317 Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Tue, 14 Mar 2023 15:09:06 +0100 Subject: Don't look up vpn.ipv4 for ssh subcommand --- lib/subcommands/ssh.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/subcommands/ssh.bash b/lib/subcommands/ssh.bash index 6c9a6be..3a781f3 100644 --- a/lib/subcommands/ssh.bash +++ b/lib/subcommands/ssh.bash @@ -1,6 +1,6 @@ #!/usr/bin/env bash -# SPDX-FileCopyrightText: 2022 Patrick Spek +# SPDX-FileCopyrightText: 2023 Patrick Spek # # SPDX-License-Identifier: AGPL-3.0-or-later @@ -20,7 +20,7 @@ subcommand() local host user="$(config_for "$node" "bashtard.ssh.user" "$USER")" - host="$(config_for "$node" "bashtard.ssh.host" "$(config_for "$node" "vpn.ipv4")")" + host="$(config_for "$node" "bashtard.ssh.host")" if [[ -z "$host" ]] then -- cgit v1.1