Some checks failed
Mark stable commit / test-unit (push) Has been cancelled
Mark stable commit / test-integration (push) Has been cancelled
Mark stable commit / test-env-virtual (push) Has been cancelled
Mark stable commit / test-env-nix (push) Has been cancelled
Mark stable commit / test-e2e (push) Has been cancelled
Mark stable commit / test-virgin-user (push) Has been cancelled
Mark stable commit / test-virgin-root (push) Has been cancelled
Mark stable commit / mark-stable (push) Has been cancelled
* Centralize OS detection and normalization in a dedicated resolver module * Treat Manjaro consistently as Arch across dependencies and package install * Remove duplicated OS logic and legacy lib.sh * Rename installation entrypoint to init.sh and update Makefile accordingly https://chatgpt.com/share/693c7b50-3be0-800f-8aeb-daf3ee929ea3
16 lines
467 B
Bash
Executable File
16 lines
467 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
if [[ "${EUID:-$(id -u)}" -ne 0 ]]; then
|
|
echo "[installation/install] Warning: Installation is just possible via root."
|
|
exit 0
|
|
fi
|
|
|
|
echo "[installation] Running as root (EUID=0)."
|
|
echo "[installation] Install Package Dependencies..."
|
|
bash scripts/installation/dependencies.sh
|
|
echo "[installation] Install Distribution Package..."
|
|
bash scripts/installation/package.sh
|
|
echo "[installation] Root/system setup complete."
|
|
exit 0
|