Simplifies cluster service setup.

This commit is contained in:
2025-09-28 15:25:00 -07:00
parent 912a877051
commit 838903e27d
9 changed files with 458 additions and 615 deletions

View File

@@ -48,3 +48,12 @@ else
sudo apt-get install -y restic
echo "restic installed successfully."
fi
## Install direnv
if command -v direnv &> /dev/null; then
echo "direnv is already installed."
else
sudo apt-get update
sudo apt-get install -y direnv
echo "direnv installed successfully. Add `eval \"\$(direnv hook bash)\"` to your shell configuration file if not already present."
fi