mirror of
https://github.com/hashicorp/packer.git
synced 2026-04-15 22:20:33 -04:00
remove vagrant plugin from bundled plugins
This commit is contained in:
parent
bfe200d920
commit
8acd453065
2 changed files with 4 additions and 9 deletions
|
|
@ -45,9 +45,6 @@ import (
|
|||
tritonbuilder "github.com/hashicorp/packer-plugin-triton/builder/triton"
|
||||
uclouduhostbuilder "github.com/hashicorp/packer-plugin-ucloud/builder/ucloud/uhost"
|
||||
ucloudimportpostprocessor "github.com/hashicorp/packer-plugin-ucloud/post-processor/ucloud-import"
|
||||
vagrantbuilder "github.com/hashicorp/packer-plugin-vagrant/builder/vagrant"
|
||||
vagrantpostprocessor "github.com/hashicorp/packer-plugin-vagrant/post-processor/vagrant"
|
||||
vagrantcloudpostprocessor "github.com/hashicorp/packer-plugin-vagrant/post-processor/vagrant-cloud"
|
||||
yandexbuilder "github.com/hashicorp/packer-plugin-yandex/builder/yandex"
|
||||
yandexexportpostprocessor "github.com/hashicorp/packer-plugin-yandex/post-processor/yandex-export"
|
||||
yandeximportpostprocessor "github.com/hashicorp/packer-plugin-yandex/post-processor/yandex-import"
|
||||
|
|
@ -86,7 +83,6 @@ var VendoredBuilders = map[string]packersdk.Builder{
|
|||
"tencentcloud-cvm": new(tencentcloudcvmbuilder.Builder),
|
||||
"triton": new(tritonbuilder.Builder),
|
||||
"ucloud-uhost": new(uclouduhostbuilder.Builder),
|
||||
"vagrant": new(vagrantbuilder.Builder),
|
||||
"osc-bsu": new(oscbsubuilder.Builder),
|
||||
"osc-bsusurrogate": new(oscbsusurrogatebuilder.Builder),
|
||||
"osc-bsuvolume": new(oscbsuvolumebuilder.Builder),
|
||||
|
|
@ -114,8 +110,6 @@ var VendoredPostProcessors = map[string]packersdk.PostProcessor{
|
|||
"alicloud-import": new(alicloudimportpostprocessor.PostProcessor),
|
||||
"digitalocean-import": new(digitaloceanimportpostprocessor.PostProcessor),
|
||||
"ucloud-import": new(ucloudimportpostprocessor.PostProcessor),
|
||||
"vagrant": new(vagrantpostprocessor.PostProcessor),
|
||||
"vagrant-cloud": new(vagrantcloudpostprocessor.PostProcessor),
|
||||
"yandex-export": new(yandexexportpostprocessor.PostProcessor),
|
||||
"yandex-import": new(yandeximportpostprocessor.PostProcessor),
|
||||
}
|
||||
|
|
|
|||
7
main.go
7
main.go
|
|
@ -347,7 +347,7 @@ func loadConfig() (*config, error) {
|
|||
|
||||
"qemu": "github.com/hashicorp/qemu",
|
||||
|
||||
// "vagrant": "github.com/hashicorp/vagrant",
|
||||
"vagrant": "github.com/hashicorp/vagrant",
|
||||
|
||||
"virtualbox-iso": "github.com/hashicorp/virtualbox",
|
||||
"virtualbox-ovf": "github.com/hashicorp/virtualbox",
|
||||
|
|
@ -381,8 +381,9 @@ func loadConfig() (*config, error) {
|
|||
"googlecompute-import": "github.com/hashicorp/googlecompute",
|
||||
|
||||
"exoscale-import": "github.com/exoscale/exoscale",
|
||||
// "vagrant": "github.com/hashicorp/vagrant",
|
||||
// "vagrant-cloud": "github.com/hashicorp/vagrant",
|
||||
|
||||
"vagrant": "github.com/hashicorp/vagrant",
|
||||
"vagrant-cloud": "github.com/hashicorp/vagrant",
|
||||
|
||||
"vsphere": "github.com/hashicorp/vsphere",
|
||||
"vsphere-template": "github.com/hashicorp/vsphere",
|
||||
|
|
|
|||
Loading…
Reference in a new issue