aboutsummaryrefslogtreecommitdiff
path: root/lib/subcommands/ssh.bash
blob: b5712cc002f152a7eb3295b65f376e6e051ed8e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env bash

# SPDX-FileCopyrightText: 2022 Patrick Spek <p.spek@tyil.nl>
#
# SPDX-License-Identifier: AGPL-3.0-or-later

subcommand()
{
	local ssh

	ssh="$(config "app.ssh")"

	if [[ ! -d "$BASHTARD_ETCDIR/hosts.d" ]]
	then
		crit "$BASHTARD_NAME/ssh" "Could not find hosts file at $BASHTARD_ETCDIR/hosts.d"
		return 3
	fi

	chgdir "$BASHTARD_ETCDIR/hosts.d"

	for node in *
	do
		local user
		local host

		user="$(config_for "$node" "ssh.user" "root")"

		# Try IPv6 first
		host="$(config_for "$node" "ssh.host" "$(config_for "$node" "vpn.ipv6")")"

		if [[ -z "$host" ]]
		then
			# Otherwise try IPv4
			host="$(config_for "$node" "ssh.host" "$(config_for "$node" "vpn.ipv4")")"
		fi

		notice "ssh" "$user@$node ($host) > $*"

		$ssh "$user@$host" "$@"

		unset user
		unset host
	done
}