mirror of https://github.com/hashicorp/packer
Merge pull request #2848 from epowell/master
Implement a null-object communicator for 'none'pull/3099/head
commit
6587926a2b
@ -0,0 +1,40 @@
|
||||
package none
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"io"
|
||||
"os"
|
||||
"github.com/mitchellh/packer/packer"
|
||||
)
|
||||
|
||||
type comm struct {
|
||||
config string
|
||||
}
|
||||
|
||||
// Creates a null packer.Communicator implementation. This takes
|
||||
// an already existing configuration.
|
||||
func New(config string) (result *comm, err error) {
|
||||
// Establish an initial connection and connect
|
||||
result = &comm{
|
||||
config: config,
|
||||
}
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
func (c *comm) Start(cmd *packer.RemoteCmd) (err error) {
|
||||
cmd.SetExited(0)
|
||||
return
|
||||
}
|
||||
|
||||
func (c *comm) Upload(path string, input io.Reader, fi *os.FileInfo) error {
|
||||
return errors.New("Upload is not implemented when communicator = 'none'")
|
||||
}
|
||||
|
||||
func (c *comm) UploadDir(dst string, src string, excl []string) error {
|
||||
return errors.New("UploadDir is not implemented when communicator = 'none'")
|
||||
}
|
||||
|
||||
func (c *comm) Download(path string, output io.Writer) error {
|
||||
return errors.New("Download is not implemented when communicator = 'none'")
|
||||
}
|
||||
Loading…
Reference in new issue