This commit is contained in:
2026-04-02 23:38:28 +02:00
parent f38637ace4
commit 3b14ccf1ce
2 changed files with 6 additions and 4 deletions

View File

@@ -15,11 +15,12 @@ mkdir -p "$LIVE_DIR"
env
cd "$LIVE_DIR" && exec lh_config \
-a "$BASE__ARCH" \
--apt "$BASE__APT" \
-a $BASE__ARCH \
--distribution $BASE__DISTRIBUTION \
--apt $BASE__APT \
--apt-options "$BASE__APT_OPTIONS" \
--apt-secure "$BASE__APT_SECURE" \
--apt-recommends "$BASE__APT_RECOMMENDS" \
--apt-secure $BASE__APT_SECURE \
--apt-recommends $BASE__APT_RECOMMENDS \
--mirror-bootstrap "$BASE__REPO_URL" \
--mirror-binary "$BASE__REPO_URL" \
--mirror-binary-security "$BASE__SECURITY_REPO_URL" \

View File

@@ -28,6 +28,7 @@ class ModuleSpec:
@dataclass(frozen=True)
class BaseSpec(ModuleSpec):
arch: str = "i386"
distribution: str = "etch"
apt: str = "apt"
apt_options: str = "--yes --force-yes"
apt_secure: bool = False