From 4a5b06ed891876a2a4daba04ef231009250d83fa Mon Sep 17 00:00:00 2001 From: Aaron Bull Schaefer Date: Sun, 7 Feb 2016 20:34:12 -0800 Subject: [PATCH] Store the output *.box files in a dedicated directory Tidy things up a bit by not polluting the top-level directory. --- .gitignore | 3 +-- README.md | 6 +++--- arch-template.json | 2 +- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 33e26d3..e9ce979 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,2 @@ -packer_arch_*.box +output/*.box packer_cache -output-vmware diff --git a/README.md b/README.md index 2dfacec..04b791d 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ should be good to clone this repo and go: Then you can import the generated box into Vagrant: - $ vagrant box add arch packer_arch_virtualbox.box + $ vagrant box add arch output/packer_arch_virtualbox.box ### VMware Provider @@ -58,7 +58,7 @@ this repo and go: Then you can import the generated box into Vagrant: - $ vagrant box add arch packer_arch_vmware.box + $ vagrant box add arch output/packer_arch_vmware.box ### Parallels Provider @@ -73,7 +73,7 @@ this repo and go: Then you can import the generated box into Vagrant: - $ vagrant box add arch packer_arch_parallels.box + $ vagrant box add arch output/packer_arch_parallels.box ### wrapacker diff --git a/arch-template.json b/arch-template.json index 3ec8eeb..0c89e1b 100644 --- a/arch-template.json +++ b/arch-template.json @@ -74,7 +74,7 @@ "post-processors": [ { "type": "vagrant", - "output": "packer_arch_{{.Provider}}.box" + "output": "output/packer_arch_{{.Provider}}.box" } ] }