Files

24 lines
474 B
Nix
Raw Permalink Normal View History

2024-07-13 01:39:48 -05:00
{
2024-11-18 21:22:32 -06:00
writeShellApplication,
findutils,
packer,
...
2024-07-13 01:39:48 -05:00
}:
writeShellApplication {
2024-11-18 21:22:32 -06:00
name = "validate";
runtimeInputs = [
findutils
packer
];
text = ''
2024-11-18 22:26:17 -06:00
shopt -s globstar
if [ -e "''${PACKER_CONFIG_DIR}" ]; then
find "''${PACKER_CONFIG_DIR}" -name '*_linux_amd64' -exec chmod +x '{}' ";"
fi
packer init sources
for vars in distros/**/*.pkrvars.hcl; do
packer validate -except=upload "-var-file=''${vars}" sources/
done
2024-11-18 21:22:32 -06:00
'';
2024-07-13 01:39:48 -05:00
}