Reorganize the merged KNELServerBuild + PFVCluster repo:
provisioning/ server provisioning (was ProjectCode/ +
Project-Includes/ + Project-ConfigFiles/)
tests/ test suite (was Project-Tests/)
perf/ Proxmox perf scripts (was top-level *.sh + scripts/)
docs/ all documentation (was ProjectDocs/ + PROJECT.md +
K8S.md + TODO.md)
dns-cluster-setup/ Technitium DNS cluster (unchanged)
netinfra/ netinfra audit scripts (unchanged)
switches/ switch configs (unchanged)
vendor/ vendored KNELShellFramework (unchanged)
Update all internal path references from old directory names
(ProjectCode/, Project-Includes/, Project-Tests/) to the new ones
(provisioning/, tests/) across all scripts.
🤖 Generated with [Crush](https://github.com/charmassociates/crush)
Assisted-by: GLM-5 via Crush <crush@charm.land>
38 lines
1.3 KiB
Bash
Executable File
38 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
# install-utils-v2.sh - retry install without nstat package.
|
|
set -uo pipefail
|
|
SSH_OPTS=(-o BatchMode=yes -o ConnectTimeout=8 -o StrictHostKeyChecking=accept-new)
|
|
|
|
PKGS="sysstat jq numactl nvme-cli mtr-tiny dnsutils bmon"
|
|
|
|
for host in pfv-tsys6 pfv-tsys7; do
|
|
echo "=== [$host] installing: $PKGS ==="
|
|
ssh "${SSH_OPTS[@]}" "root@$host" \
|
|
"DEBIAN_FRONTEND=noninteractive apt-get update -qq 2>&1 | tail -2 && \
|
|
DEBIAN_FRONTEND=noninteractive apt-get install -y $PKGS 2>&1 | tail -10"
|
|
|
|
# sysstat enable (path varies by Debian version)
|
|
ssh "${SSH_OPTS[@]}" "root@$host" '
|
|
if [ -r /etc/default/sysstat ]; then
|
|
sed -i "s/^ENABLED=.*/ENABLED=\"true\"/" /etc/default/sysstat
|
|
systemctl enable --now sysstat 2>/dev/null
|
|
grep ENABLED /etc/default/sysstat
|
|
else
|
|
# Newer Debian (trixie) — sysstat cron/service auto-enabled
|
|
systemctl enable --now sysstat 2>/dev/null || echo "(sysstat auto via cron)"
|
|
fi
|
|
'
|
|
echo ""
|
|
done
|
|
|
|
# Verify
|
|
for host in pfv-tsys6 pfv-tsys7; do
|
|
echo "=== [$host] verification ==="
|
|
ssh "${SSH_OPTS[@]}" "root@$host" '
|
|
for p in sysstat jq numactl nvme mtr-tiny dig bmon; do
|
|
command -v "$p" >/dev/null 2>&1 && echo " ✓ $p" || echo " ✗ $p"
|
|
done
|
|
'
|
|
echo ""
|
|
done
|