dns_resolver role, update-dns script, dns-deploy playbook, inventory updates
This commit is contained in:
parent
152edb8345
commit
1509daad4c
26 changed files with 780 additions and 176 deletions
|
|
@ -20,8 +20,10 @@ usage() {
|
|||
echo -e " ${C}passthrough${N} [host] GPU PCI Passthrough vorbereiten"
|
||||
echo -e " ${C}telegraf${N} [host] Telegraf Monitoring deployen"
|
||||
echo -e " ${C}wstunnel${N} [host] wstunnel + WireGuard deployen"
|
||||
echo -e " ${C}sshfs${N} [host] SSHFS Mounts einrichten"
|
||||
echo -e " ${C}tune${N} <host> Sysctl Netzwerk-Tuning"
|
||||
echo -e " ${C}pvetune${N} [host] Proxmox Host Tuning (sysctl, resolv, hosts)"
|
||||
echo -e " ${C}pveexporter${N} [host] PVE Exporter (Prometheus Metriken)"
|
||||
echo -e " ${C}update${N} [host] Dist-Upgrade (default: alle Hosts)"
|
||||
echo -e " ${C}list${N} Inventory anzeigen"
|
||||
echo -e " ${C}ping${N} [host] Erreichbarkeit testen"
|
||||
|
|
@ -73,6 +75,13 @@ case "$CMD" in
|
|||
[ -z "$HOST" ] && echo -e "${R}Fehler: Host angeben${N}" && exit 1
|
||||
run hawser.yml -l "$HOST"
|
||||
;;
|
||||
sshfs)
|
||||
if [ -n "$HOST" ]; then
|
||||
run sshfs.yml -l "$HOST"
|
||||
else
|
||||
run sshfs.yml
|
||||
fi
|
||||
;;
|
||||
tune)
|
||||
[ -z "$HOST" ] && echo -e "${R}Fehler: Host angeben${N}" && exit 1
|
||||
run sysctl.yaml -l "$HOST"
|
||||
|
|
@ -84,6 +93,13 @@ case "$CMD" in
|
|||
run sysctl-proxmox.yaml
|
||||
fi
|
||||
;;
|
||||
pveexporter)
|
||||
if [ -n "$HOST" ]; then
|
||||
run pve-exporter.yml -l "$HOST"
|
||||
else
|
||||
run pve-exporter.yml
|
||||
fi
|
||||
;;
|
||||
pve)
|
||||
if [ -n "$HOST" ]; then
|
||||
run pve-postinstall.yml -l "$HOST"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue