mirror of
https://github.com/ben-grande/qusal.git
synced 2024-10-01 02:35:49 -04:00
20 lines
473 B
Bash
20 lines
473 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
## SPDX-FileCopyrightText: 2023 Benjamin Grande M. S. <ben.grande.b@gmail.com>
|
||
|
##
|
||
|
## SPDX-License-Identifier: AGPL-3.0-or-later
|
||
|
|
||
|
set -eu
|
||
|
|
||
|
test "$(hostname)" = "dom0" || { echo "Must be run from dom0" >&2; exit 1; }
|
||
|
test "$(id -u)" = "0" || exec sudo "${0}"
|
||
|
|
||
|
group="qusal"
|
||
|
file_roots="/srv/salt/${group}"
|
||
|
|
||
|
## 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}"
|