Files
vms/nix/validate.nix
T
2024-07-13 01:46:48 -05:00

21 lines
335 B
Nix

{
writeShellApplication,
packer,
...
}:
writeShellApplication {
name = "validate";
runtimeInputs = [
packer
];
text = ''
shopt -s globstar
export PACKER_LOG=1
packer init sources
unset PACKER_LOG
for vars in distros/**/*.pkrvars.hcl; do
packer validate -except=upload "-var-file=''${vars}" sources/
done
'';
}