Packer templates for building Vagrant boxes customized by Evolix.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/make -f
|
|
|
|
.PHONY: evolinux packmail clean
|
|
|
|
evolinux:
|
|
./scripts/make_template evolinux | PACKER_CACHE_DIR='build/packer' packer build -parallel=false -
|
|
|
|
packmail:
|
|
./scripts/make_template packmail | PACKER_CACHE_DIR='build/packer' packer build -parallel=false -
|
|
|
|
packweb:
|
|
./scripts/make_template packweb | PACKER_CACHE_DIR='build/packer' packer build -parallel=false -
|
|
|
|
clean:
|
|
rm -rf build/*
|