rwx/cmd/debootstrap/__init__.py

11 lines
145 B
Python
Raw Normal View History

2024-02-16 20:31:38 +00:00
import cmd
import ps
2024-02-16 20:11:28 +00:00
cmd.need('debootstrap')
def debootstrap(input_mirror: str, output_root: str):
ps.run([
'debootstrap',
])