Initial commit

This commit is contained in:
2025-04-21 11:19:02 +02:00
commit 34495a389b
3 changed files with 65 additions and 0 deletions

14
ctl.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/env bash
function info {
echo "PI-Lab Utils"
}
function build {
docker run --rm --privileged \
-v /dev:/dev \
-v ${PWD}:/build mkaczanowski/packer-builder-arm:latest \
build packer/raspios.pkr.hcl
}
${@:-info}