mirror of
https://github.com/hashicorp/packer.git
synced 2026-06-05 06:42:30 -04:00
remove ansible plugin from bundled plugins
This commit is contained in:
parent
8acd453065
commit
faeef90910
2 changed files with 2 additions and 6 deletions
|
|
@ -9,8 +9,6 @@ import (
|
|||
|
||||
alicloudecsbuilder "github.com/hashicorp/packer-plugin-alicloud/builder/ecs"
|
||||
alicloudimportpostprocessor "github.com/hashicorp/packer-plugin-alicloud/post-processor/alicloud-import"
|
||||
ansibleprovisioner "github.com/hashicorp/packer-plugin-ansible/provisioner/ansible"
|
||||
ansiblelocalprovisioner "github.com/hashicorp/packer-plugin-ansible/provisioner/ansible-local"
|
||||
chefclientprovisioner "github.com/hashicorp/packer-plugin-chef/provisioner/chef-client"
|
||||
chefsoloprovisioner "github.com/hashicorp/packer-plugin-chef/provisioner/chef-solo"
|
||||
cloudstackbuilder "github.com/hashicorp/packer-plugin-cloudstack/builder/cloudstack"
|
||||
|
|
@ -93,8 +91,6 @@ var VendoredBuilders = map[string]packersdk.Builder{
|
|||
// VendoredProvisioners are provisioner components that were once bundled with the
|
||||
// Packer core, but are now being imported from their counterpart plugin repos
|
||||
var VendoredProvisioners = map[string]packersdk.Provisioner{
|
||||
"ansible": new(ansibleprovisioner.Provisioner),
|
||||
"ansible-local": new(ansiblelocalprovisioner.Provisioner),
|
||||
"chef-client": new(chefclientprovisioner.Provisioner),
|
||||
"chef-solo": new(chefsoloprovisioner.Provisioner),
|
||||
"converge": new(convergeprovisioner.Provisioner),
|
||||
|
|
|
|||
4
main.go
4
main.go
|
|
@ -364,8 +364,8 @@ func loadConfig() (*config, error) {
|
|||
"amazon-secretsmanager": "github.com/hashicorp/amazon",
|
||||
},
|
||||
ProvisionerRedirects: map[string]string{
|
||||
// "ansible": "github.com/hashicorp/ansible",
|
||||
// "ansible-local": "github.com/hashicorp/ansible",
|
||||
"ansible": "github.com/hashicorp/ansible",
|
||||
"ansible-local": "github.com/hashicorp/ansible",
|
||||
|
||||
"azure-dtlartifact": "github.com/hashicorp/azure",
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue