Debian moved to attic

Debian boxes build great, but I cannot get them to load after the build
is complete. They will not bring up their Network ports as a VM.
This commit is contained in:
Greg Hellings
2023-08-10 14:12:04 -05:00
parent cc95162e18
commit b0b313cd69
8 changed files with 0 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/env xonsh
$RAISE_SUBPROC_ERROR = True
from pathlib import Path
import sys
self = Path(__file__).absolute()
base = self.parent.parent.parent.parent
source @(base / "test.xsh")
unsupported = set({
})
opts = get_parser(sys.argv[1:], unsupported)
cd @(str(base))
for provider in opts["providers"]:
packer build -var=@(opts["headless"]) -var-file=@(self.parent / "x86_64.pkrvars.hcl") @(opts["upload"]) -only=@(provider) @(base / "sources")