diff options
author | Patrick Spek <p.spek@tyil.nl> | 2023-03-14 15:09:06 +0100 |
---|---|---|
committer | Patrick Spek <p.spek@tyil.nl> | 2023-03-14 15:15:15 +0100 |
commit | 0d05a05eaa4d3a1a3fc682eb9548e56d16751317 (patch) | |
tree | 8c6ce27c5c7694fd110d225b0cf4700136475ef8 | |
parent | 80ab8228cc2049bb7c9a56105b958a718c5aa85f (diff) | |
download | bashtard-0d05a05eaa4d3a1a3fc682eb9548e56d16751317.tar.gz bashtard-0d05a05eaa4d3a1a3fc682eb9548e56d16751317.tar.bz2 |
Don't look up vpn.ipv4 for ssh subcommand
-rw-r--r-- | lib/subcommands/ssh.bash | 4 |
1 files 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 <p.spek@tyil.nl> +# SPDX-FileCopyrightText: 2023 Patrick Spek <p.spek@tyil.nl> # # 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 |