├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_requests.md │ └── question.md ├── PULL_REQUEST_TEMPLATE.md ├── actions │ └── build-and-persist-plugin-binary │ │ └── action.yml ├── dependabot.yml ├── release.yml └── workflows │ ├── backport.yml │ ├── build.yml │ ├── go-test-darwin.yml │ ├── go-test-linux.yml │ ├── go-test-windows.yml │ ├── go-validate.yml │ ├── notify-integration-release-via-manual.yaml │ └── notify-integration-release-via-tag.yaml ├── .gitignore ├── .go-version ├── .golangci.yml ├── .release ├── ci.hcl ├── packer-plugin-vagrant-artifacts.hcl ├── release-metadata.hcl └── security-scan.hcl ├── .web-docs ├── README.md ├── components │ ├── builder │ │ └── vagrant │ │ │ └── README.md │ └── post-processor │ │ ├── vagrant-cloud │ │ └── README.md │ │ ├── vagrant-registry │ │ └── README.md │ │ └── vagrant │ │ └── README.md ├── metadata.hcl └── scripts │ └── compile-to-webdocs.sh ├── CHANGELOG.md ├── CODEOWNERS ├── GNUmakefile ├── LICENSE ├── README.md ├── docs-partials └── builder │ └── vagrant │ ├── Config-not-required.mdx │ └── Config-required.mdx ├── docs ├── README.md ├── builders │ └── vagrant.mdx └── post-processors │ ├── vagrant-cloud.mdx │ ├── vagrant-registry.mdx │ └── vagrant.mdx ├── example ├── vagrant_builder.pkr.hcl ├── vagrant_cloud_postprocessor.pkr.hcl └── vagrant_postprocessor.pkr.hcl ├── go.mod ├── go.sum ├── main.go ├── post-processor ├── hcp-vagrant-registry │ ├── artifact.go │ ├── artifact_test.go │ ├── post-processor.go │ ├── post-processor.hcl2spec.go │ ├── post-processor_test.go │ ├── step_confirm_upload.go │ ├── step_create_architecture.go │ ├── step_create_box.go │ ├── step_create_provider.go │ ├── step_create_version.go │ ├── step_prepare_upload.go │ ├── step_release_version.go │ ├── step_upload.go │ └── util.go ├── vagrant-cloud │ ├── artifact.go │ ├── artifact_test.go │ ├── client.go │ ├── client_test.go │ ├── post-processor.go │ ├── post-processor.hcl2spec.go │ ├── post-processor_test.go │ ├── step_confirm_upload.go │ ├── step_create_provider.go │ ├── step_create_version.go │ ├── step_prepare_upload.go │ ├── step_release_version.go │ ├── step_upload.go │ └── step_verify_box.go └── vagrant │ ├── artifact.go │ ├── artifact_test.go │ ├── aws.go │ ├── aws_test.go │ ├── azure.go │ ├── azure_test.go │ ├── digitalocean.go │ ├── digitalocean_test.go │ ├── docker.go │ ├── docker_test.go │ ├── file.go │ ├── file_test.go │ ├── google.go │ ├── google_test.go │ ├── hyperv.go │ ├── libvirt.go │ ├── libvirt_test.go │ ├── lxc.go │ ├── lxc_test.go │ ├── parallels.go │ ├── parallels_test.go │ ├── post-processor.go │ ├── post-processor.hcl2spec.go │ ├── post-processor_test.go │ ├── provider.go │ ├── scaleway.go │ ├── tar_fix.go │ ├── tar_fix_go110.go │ ├── test-fixtures │ └── decompress-tar │ │ └── outside_parent.tar │ ├── util.go │ ├── virtualbox.go │ ├── virtualbox_test.go │ ├── vmware.go │ └── vmware_test.go └── version ├── VERSION └── version.go /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.github/ISSUE_TEMPLATE/feature_requests.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/build-and-persist-plugin-binary/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.github/actions/build-and-persist-plugin-binary/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/backport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.github/workflows/backport.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/go-test-darwin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.github/workflows/go-test-darwin.yml -------------------------------------------------------------------------------- /.github/workflows/go-test-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.github/workflows/go-test-linux.yml -------------------------------------------------------------------------------- /.github/workflows/go-test-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.github/workflows/go-test-windows.yml -------------------------------------------------------------------------------- /.github/workflows/go-validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.github/workflows/go-validate.yml -------------------------------------------------------------------------------- /.github/workflows/notify-integration-release-via-manual.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.github/workflows/notify-integration-release-via-manual.yaml -------------------------------------------------------------------------------- /.github/workflows/notify-integration-release-via-tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.github/workflows/notify-integration-release-via-tag.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.gitignore -------------------------------------------------------------------------------- /.go-version: -------------------------------------------------------------------------------- 1 | 1.23.0 2 | 3 | -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.release/ci.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.release/ci.hcl -------------------------------------------------------------------------------- /.release/packer-plugin-vagrant-artifacts.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.release/packer-plugin-vagrant-artifacts.hcl -------------------------------------------------------------------------------- /.release/release-metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.release/release-metadata.hcl -------------------------------------------------------------------------------- /.release/security-scan.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.release/security-scan.hcl -------------------------------------------------------------------------------- /.web-docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.web-docs/README.md -------------------------------------------------------------------------------- /.web-docs/components/builder/vagrant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.web-docs/components/builder/vagrant/README.md -------------------------------------------------------------------------------- /.web-docs/components/post-processor/vagrant-cloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.web-docs/components/post-processor/vagrant-cloud/README.md -------------------------------------------------------------------------------- /.web-docs/components/post-processor/vagrant-registry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.web-docs/components/post-processor/vagrant-registry/README.md -------------------------------------------------------------------------------- /.web-docs/components/post-processor/vagrant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.web-docs/components/post-processor/vagrant/README.md -------------------------------------------------------------------------------- /.web-docs/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.web-docs/metadata.hcl -------------------------------------------------------------------------------- /.web-docs/scripts/compile-to-webdocs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/.web-docs/scripts/compile-to-webdocs.sh -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @hashicorp/packer 2 | -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/GNUmakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/README.md -------------------------------------------------------------------------------- /docs-partials/builder/vagrant/Config-not-required.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/docs-partials/builder/vagrant/Config-not-required.mdx -------------------------------------------------------------------------------- /docs-partials/builder/vagrant/Config-required.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/docs-partials/builder/vagrant/Config-required.mdx -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/builders/vagrant.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/docs/builders/vagrant.mdx -------------------------------------------------------------------------------- /docs/post-processors/vagrant-cloud.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/docs/post-processors/vagrant-cloud.mdx -------------------------------------------------------------------------------- /docs/post-processors/vagrant-registry.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/docs/post-processors/vagrant-registry.mdx -------------------------------------------------------------------------------- /docs/post-processors/vagrant.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/docs/post-processors/vagrant.mdx -------------------------------------------------------------------------------- /example/vagrant_builder.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/example/vagrant_builder.pkr.hcl -------------------------------------------------------------------------------- /example/vagrant_cloud_postprocessor.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/example/vagrant_cloud_postprocessor.pkr.hcl -------------------------------------------------------------------------------- /example/vagrant_postprocessor.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/example/vagrant_postprocessor.pkr.hcl -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/main.go -------------------------------------------------------------------------------- /post-processor/hcp-vagrant-registry/artifact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/hcp-vagrant-registry/artifact.go -------------------------------------------------------------------------------- /post-processor/hcp-vagrant-registry/artifact_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/hcp-vagrant-registry/artifact_test.go -------------------------------------------------------------------------------- /post-processor/hcp-vagrant-registry/post-processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/hcp-vagrant-registry/post-processor.go -------------------------------------------------------------------------------- /post-processor/hcp-vagrant-registry/post-processor.hcl2spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/hcp-vagrant-registry/post-processor.hcl2spec.go -------------------------------------------------------------------------------- /post-processor/hcp-vagrant-registry/post-processor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/hcp-vagrant-registry/post-processor_test.go -------------------------------------------------------------------------------- /post-processor/hcp-vagrant-registry/step_confirm_upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/hcp-vagrant-registry/step_confirm_upload.go -------------------------------------------------------------------------------- /post-processor/hcp-vagrant-registry/step_create_architecture.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/hcp-vagrant-registry/step_create_architecture.go -------------------------------------------------------------------------------- /post-processor/hcp-vagrant-registry/step_create_box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/hcp-vagrant-registry/step_create_box.go -------------------------------------------------------------------------------- /post-processor/hcp-vagrant-registry/step_create_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/hcp-vagrant-registry/step_create_provider.go -------------------------------------------------------------------------------- /post-processor/hcp-vagrant-registry/step_create_version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/hcp-vagrant-registry/step_create_version.go -------------------------------------------------------------------------------- /post-processor/hcp-vagrant-registry/step_prepare_upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/hcp-vagrant-registry/step_prepare_upload.go -------------------------------------------------------------------------------- /post-processor/hcp-vagrant-registry/step_release_version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/hcp-vagrant-registry/step_release_version.go -------------------------------------------------------------------------------- /post-processor/hcp-vagrant-registry/step_upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/hcp-vagrant-registry/step_upload.go -------------------------------------------------------------------------------- /post-processor/hcp-vagrant-registry/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/hcp-vagrant-registry/util.go -------------------------------------------------------------------------------- /post-processor/vagrant-cloud/artifact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant-cloud/artifact.go -------------------------------------------------------------------------------- /post-processor/vagrant-cloud/artifact_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant-cloud/artifact_test.go -------------------------------------------------------------------------------- /post-processor/vagrant-cloud/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant-cloud/client.go -------------------------------------------------------------------------------- /post-processor/vagrant-cloud/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant-cloud/client_test.go -------------------------------------------------------------------------------- /post-processor/vagrant-cloud/post-processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant-cloud/post-processor.go -------------------------------------------------------------------------------- /post-processor/vagrant-cloud/post-processor.hcl2spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant-cloud/post-processor.hcl2spec.go -------------------------------------------------------------------------------- /post-processor/vagrant-cloud/post-processor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant-cloud/post-processor_test.go -------------------------------------------------------------------------------- /post-processor/vagrant-cloud/step_confirm_upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant-cloud/step_confirm_upload.go -------------------------------------------------------------------------------- /post-processor/vagrant-cloud/step_create_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant-cloud/step_create_provider.go -------------------------------------------------------------------------------- /post-processor/vagrant-cloud/step_create_version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant-cloud/step_create_version.go -------------------------------------------------------------------------------- /post-processor/vagrant-cloud/step_prepare_upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant-cloud/step_prepare_upload.go -------------------------------------------------------------------------------- /post-processor/vagrant-cloud/step_release_version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant-cloud/step_release_version.go -------------------------------------------------------------------------------- /post-processor/vagrant-cloud/step_upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant-cloud/step_upload.go -------------------------------------------------------------------------------- /post-processor/vagrant-cloud/step_verify_box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant-cloud/step_verify_box.go -------------------------------------------------------------------------------- /post-processor/vagrant/artifact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/artifact.go -------------------------------------------------------------------------------- /post-processor/vagrant/artifact_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/artifact_test.go -------------------------------------------------------------------------------- /post-processor/vagrant/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/aws.go -------------------------------------------------------------------------------- /post-processor/vagrant/aws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/aws_test.go -------------------------------------------------------------------------------- /post-processor/vagrant/azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/azure.go -------------------------------------------------------------------------------- /post-processor/vagrant/azure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/azure_test.go -------------------------------------------------------------------------------- /post-processor/vagrant/digitalocean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/digitalocean.go -------------------------------------------------------------------------------- /post-processor/vagrant/digitalocean_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/digitalocean_test.go -------------------------------------------------------------------------------- /post-processor/vagrant/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/docker.go -------------------------------------------------------------------------------- /post-processor/vagrant/docker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/docker_test.go -------------------------------------------------------------------------------- /post-processor/vagrant/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/file.go -------------------------------------------------------------------------------- /post-processor/vagrant/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/file_test.go -------------------------------------------------------------------------------- /post-processor/vagrant/google.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/google.go -------------------------------------------------------------------------------- /post-processor/vagrant/google_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/google_test.go -------------------------------------------------------------------------------- /post-processor/vagrant/hyperv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/hyperv.go -------------------------------------------------------------------------------- /post-processor/vagrant/libvirt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/libvirt.go -------------------------------------------------------------------------------- /post-processor/vagrant/libvirt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/libvirt_test.go -------------------------------------------------------------------------------- /post-processor/vagrant/lxc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/lxc.go -------------------------------------------------------------------------------- /post-processor/vagrant/lxc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/lxc_test.go -------------------------------------------------------------------------------- /post-processor/vagrant/parallels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/parallels.go -------------------------------------------------------------------------------- /post-processor/vagrant/parallels_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/parallels_test.go -------------------------------------------------------------------------------- /post-processor/vagrant/post-processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/post-processor.go -------------------------------------------------------------------------------- /post-processor/vagrant/post-processor.hcl2spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/post-processor.hcl2spec.go -------------------------------------------------------------------------------- /post-processor/vagrant/post-processor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/post-processor_test.go -------------------------------------------------------------------------------- /post-processor/vagrant/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/provider.go -------------------------------------------------------------------------------- /post-processor/vagrant/scaleway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/scaleway.go -------------------------------------------------------------------------------- /post-processor/vagrant/tar_fix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/tar_fix.go -------------------------------------------------------------------------------- /post-processor/vagrant/tar_fix_go110.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/tar_fix_go110.go -------------------------------------------------------------------------------- /post-processor/vagrant/test-fixtures/decompress-tar/outside_parent.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/test-fixtures/decompress-tar/outside_parent.tar -------------------------------------------------------------------------------- /post-processor/vagrant/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/util.go -------------------------------------------------------------------------------- /post-processor/vagrant/virtualbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/virtualbox.go -------------------------------------------------------------------------------- /post-processor/vagrant/virtualbox_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/virtualbox_test.go -------------------------------------------------------------------------------- /post-processor/vagrant/vmware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/vmware.go -------------------------------------------------------------------------------- /post-processor/vagrant/vmware_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/post-processor/vagrant/vmware_test.go -------------------------------------------------------------------------------- /version/VERSION: -------------------------------------------------------------------------------- 1 | 1.1.6 2 | -------------------------------------------------------------------------------- /version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/packer-plugin-vagrant/HEAD/version/version.go --------------------------------------------------------------------------------