qusal/scripts/setup.sh

24 lines
559 B
Bash
Raw Normal View History

2023-11-13 09:33:28 -05:00
#!/bin/sh
2024-01-29 10:49:54 -05:00
## SPDX-FileCopyrightText: 2023 - 2024 Benjamin Grande M. S. <ben.grande.b@gmail.com>
2023-11-13 09:33:28 -05:00
##
## SPDX-License-Identifier: AGPL-3.0-or-later
set -eu
# shellcheck disable=3028
hostname="$(hostname)}"
test "${hostname}" = "dom0" || { echo "Must be run from dom0" >&2; exit 1; }
uid="$(id -u)"
test "${uid}" = "0" || exec sudo "${0}"
2023-11-13 09:33:28 -05:00
group="qusal"
file_roots="/srv/salt/${group}"
cd "${0%/*}"/..
2023-11-13 09:33:28 -05:00
## Avoid having extra unwanted files.
rm -rf "${file_roots}"
cp -f minion.d/*.conf /etc/salt/minion.d/
mkdir -p "${file_roots}"
cp -r salt/* "${file_roots}"