merging workstation diffs

This commit is contained in:
ink
2026-08-08 15:45:33 +02:00
parent 7eac65fadc
commit ac3db35aee
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -45,7 +45,7 @@ if [[ "$(uname -s)" == Linux* ]]; then
fi
case "$(uname -s)" in
Darwin*) memory=12288 ;;
Darwin*) memory=16384 ;;
Linux*) memory=8192 ;;
*)
echo "Unsupported platform"
@@ -62,8 +62,8 @@ if [[ "$(uname -s)" == Darwin* ]]; then
fi
if ! podman machine inspect &>/dev/null; then
echo "Initializing podman machine with 4 CPUs and $((memory / 1024))GB RAM..."
podman machine init --rootful --cpus 4 --memory "$memory"
echo "Initializing podman machine with 6 CPUs and $((memory / 1024))GB RAM..."
podman machine init --rootful --cpus 6 --memory "$memory"
fi
if [[ "$(uname -s)" == Darwin* ]]; then