Moving Debian back to active

This commit is contained in:
Greg Hellings
2023-08-10 21:27:25 -05:00
parent 82d93ccb67
commit e115ebf7d8
13 changed files with 10 additions and 4 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")