Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Store the output *.box files in a dedicated directory #42

Merged
merged 1 commit into from
Feb 8, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
packer_arch_*.box
output/*.box
packer_cache
output-vmware
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion arch-template.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"post-processors": [
{
"type": "vagrant",
"output": "packer_arch_{{.Provider}}.box"
"output": "output/packer_arch_{{.Provider}}.box"
}
]
}