add args
This commit is contained in:
@@ -13,6 +13,11 @@ mkdir -p "$LIVE_DIR"
|
||||
|
||||
env
|
||||
exec lh_config \
|
||||
-a "$BASE__ARCH" \
|
||||
--apt "$BASE__APT" \
|
||||
--apt-options "$BASE__APT_OPTIONS" \
|
||||
--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" \
|
||||
|
||||
@@ -27,6 +27,11 @@ class ModuleSpec:
|
||||
|
||||
@dataclass(frozen=True)
|
||||
class BaseSpec(ModuleSpec):
|
||||
arch: str = "i386"
|
||||
apt: str = "apt"
|
||||
apt_options: str = "--yes --force-yes"
|
||||
apt_secure: bool = False
|
||||
apt_recommends: bool = False
|
||||
repo_url: str = "http://archive.debian.org/debian/"
|
||||
security_repo_url: str = "http://archive.debian.org/debian-security/"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user