aboutsummaryrefslogtreecommitdiff
path: root/lib/subcommands/var.bash
blob: 3e8fc0bc281620ee817f3ddc378cd8e2b91fc6d9 (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
45
46
47
48
49
#!/usr/bin/env bash

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

subcommand()
{
	local key
	local value

	# Handle opts
	while getopts ":p:" opt
	do
		case "$opt" in
			p) export BASHTARD_PLAYBOOK="$OPTARG" ;;
			*) emerg "Unused opt '$opt'?" ;;
		esac
	done

	shift $(( OPTIND - 1 ))

	key="$1" ; shift
	value="$1" ; shift

	if [[ -z "$key" ]]
	then
		emerg "bashtard/var" "You must supply a key"
		return 3
	fi

	if [[ -z "$value" ]]
	then
		# Just show the value of the given key
		printf "%s=%s\n" "$key" "$(config "$key")"
		return
	fi

	# Set the var for this specific host
	local kvfile
	local buffer

	kvfile="$BASHTARD_ETCDIR/hosts.d/${BASHTARD_PLATFORM[fqdn]}"
	buffer="$(tmpfile)"

	grep -v "^$key=" < "$kvfile" > "$buffer"
	printf "%s=%s\n" "$key" "$value" >> "$buffer"
	sort "$buffer" > "$kvfile"
}