lint/deb
This commit is contained in:
parent
9bb8003812
commit
ce3629a776
1 changed files with 4 additions and 1 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
"""Wrap Debian commands."""
|
||||||
|
|
||||||
import cmd
|
import cmd
|
||||||
|
|
||||||
import ps
|
import ps
|
||||||
|
@ -8,7 +10,8 @@ BOOTSTRAP_ARCHITECTURE = "amd64"
|
||||||
BOOTSTRAP_VARIANT = "minbase"
|
BOOTSTRAP_VARIANT = "minbase"
|
||||||
|
|
||||||
|
|
||||||
def bootstrap(root_path: str, suite: str, mirror_location: str):
|
def bootstrap(root_path: str, suite: str, mirror_location: str) -> None:
|
||||||
|
"""Boostrap a base operating filesystem."""
|
||||||
command = [
|
command = [
|
||||||
("debootstrap",),
|
("debootstrap",),
|
||||||
("--arch", BOOTSTRAP_ARCHITECTURE),
|
("--arch", BOOTSTRAP_ARCHITECTURE),
|
||||||
|
|
Loading…
Reference in a new issue