mirror of https://github.com/hashicorp/packer
parent
880dd75675
commit
728f9ecdbd
@ -0,0 +1,10 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"github.com/mitchellh/packer/packer/plugin"
|
||||
"github.com/mitchellh/packer/provisioner/salt-masterless"
|
||||
)
|
||||
|
||||
func main() {
|
||||
plugin.ServeProvisioner(new(saltMasterless.Provisioner))
|
||||
}
|
||||
@ -1,10 +0,0 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"github.com/mitchellh/packer/packer/plugin"
|
||||
"github.com/mitchellh/packer/provisioner/salt"
|
||||
)
|
||||
|
||||
func main() {
|
||||
plugin.ServeProvisioner(new(salt.Provisioner))
|
||||
}
|
||||
@ -1,6 +1,6 @@
|
||||
// This package implements a provisioner for Packer that executes a
|
||||
// saltstack highstate within the remote machine
|
||||
package salt
|
||||
package saltMasterless
|
||||
|
||||
import (
|
||||
"errors"
|
||||
@ -1,4 +1,4 @@
|
||||
package salt
|
||||
package saltMasterless
|
||||
|
||||
import (
|
||||
"github.com/mitchellh/packer/packer"
|
||||
Loading…
Reference in new issue