|
|
|
|
@ -4,6 +4,7 @@ import (
|
|
|
|
|
"errors"
|
|
|
|
|
"fmt"
|
|
|
|
|
"os"
|
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
|
|
"github.com/mitchellh/packer/common"
|
|
|
|
|
"github.com/mitchellh/packer/helper/config"
|
|
|
|
|
@ -15,7 +16,8 @@ type Config struct {
|
|
|
|
|
common.PackerConfig `mapstructure:",squash"`
|
|
|
|
|
|
|
|
|
|
// The local path of the file to upload.
|
|
|
|
|
Source string
|
|
|
|
|
Source string
|
|
|
|
|
Sources []string
|
|
|
|
|
|
|
|
|
|
// The remote path where the local file will be uploaded to.
|
|
|
|
|
Destination string
|
|
|
|
|
@ -52,14 +54,24 @@ func (p *Provisioner) Prepare(raws ...interface{}) error {
|
|
|
|
|
errs = packer.MultiErrorAppend(errs,
|
|
|
|
|
errors.New("Direction must be one of: download, upload."))
|
|
|
|
|
}
|
|
|
|
|
if p.config.Source != "" {
|
|
|
|
|
p.config.Sources = append(p.config.Sources, p.config.Source)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if p.config.Direction == "upload" {
|
|
|
|
|
if _, err := os.Stat(p.config.Source); err != nil {
|
|
|
|
|
errs = packer.MultiErrorAppend(errs,
|
|
|
|
|
fmt.Errorf("Bad source '%s': %s", p.config.Source, err))
|
|
|
|
|
for _, src := range p.config.Sources {
|
|
|
|
|
if _, err := os.Stat(src); err != nil {
|
|
|
|
|
errs = packer.MultiErrorAppend(errs,
|
|
|
|
|
fmt.Errorf("Bad source '%s': %s", src, err))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if len(p.config.Sources) < 1 {
|
|
|
|
|
errs = packer.MultiErrorAppend(errs,
|
|
|
|
|
errors.New("Source must be specified."))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if p.config.Destination == "" {
|
|
|
|
|
errs = packer.MultiErrorAppend(errs,
|
|
|
|
|
errors.New("Destination must be specified."))
|
|
|
|
|
@ -81,50 +93,65 @@ func (p *Provisioner) Provision(ui packer.Ui, comm packer.Communicator) error {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (p *Provisioner) ProvisionDownload(ui packer.Ui, comm packer.Communicator) error {
|
|
|
|
|
ui.Say(fmt.Sprintf("Downloading %s => %s", p.config.Source, p.config.Destination))
|
|
|
|
|
for _, src := range p.config.Sources {
|
|
|
|
|
ui.Say(fmt.Sprintf("Downloading %s => %s", src, p.config.Destination))
|
|
|
|
|
|
|
|
|
|
if strings.HasSuffix(p.config.Destination, "/") {
|
|
|
|
|
err := os.MkdirAll(p.config.Destination, os.FileMode(0755))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
return comm.DownloadDir(src, p.config.Destination, nil)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
f, err := os.OpenFile(p.config.Destination, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0644)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
defer f.Close()
|
|
|
|
|
f, err := os.OpenFile(p.config.Destination, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0644)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
|
|
err = comm.Download(p.config.Source, f)
|
|
|
|
|
if err != nil {
|
|
|
|
|
ui.Error(fmt.Sprintf("Download failed: %s", err))
|
|
|
|
|
err = comm.Download(src, f)
|
|
|
|
|
if err != nil {
|
|
|
|
|
ui.Error(fmt.Sprintf("Download failed: %s", err))
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return err
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (p *Provisioner) ProvisionUpload(ui packer.Ui, comm packer.Communicator) error {
|
|
|
|
|
ui.Say(fmt.Sprintf("Uploading %s => %s", p.config.Source, p.config.Destination))
|
|
|
|
|
info, err := os.Stat(p.config.Source)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
for _, src := range p.config.Sources {
|
|
|
|
|
ui.Say(fmt.Sprintf("Uploading %s => %s", src, p.config.Destination))
|
|
|
|
|
|
|
|
|
|
// If we're uploading a directory, short circuit and do that
|
|
|
|
|
if info.IsDir() {
|
|
|
|
|
return comm.UploadDir(p.config.Destination, p.config.Source, nil)
|
|
|
|
|
}
|
|
|
|
|
info, err := os.Stat(src)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// We're uploading a file...
|
|
|
|
|
f, err := os.Open(p.config.Source)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
defer f.Close()
|
|
|
|
|
// If we're uploading a directory, short circuit and do that
|
|
|
|
|
if info.IsDir() {
|
|
|
|
|
return comm.UploadDir(p.config.Destination, src, nil)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fi, err := f.Stat()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
// We're uploading a file...
|
|
|
|
|
f, err := os.Open(src)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
|
|
err = comm.Upload(p.config.Destination, f, &fi)
|
|
|
|
|
if err != nil {
|
|
|
|
|
ui.Error(fmt.Sprintf("Upload failed: %s", err))
|
|
|
|
|
fi, err := f.Stat()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
err = comm.Upload(p.config.Destination, f, &fi)
|
|
|
|
|
if err != nil {
|
|
|
|
|
ui.Error(fmt.Sprintf("Upload failed: %s", err))
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return err
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (p *Provisioner) Cancel() {
|
|
|
|
|
|