2013-07-22 00:20:39 -04:00
|
|
|
// This package implements a provisioner for Packer that executes a
|
|
|
|
// saltstack highstate within the remote machine
|
2013-08-01 02:01:03 -04:00
|
|
|
package saltmasterless
|
2013-07-22 00:20:39 -04:00
|
|
|
|
|
|
|
import (
|
2013-07-27 02:35:43 -04:00
|
|
|
"errors"
|
2013-07-22 00:20:39 -04:00
|
|
|
"fmt"
|
|
|
|
"github.com/mitchellh/mapstructure"
|
|
|
|
"github.com/mitchellh/packer/packer"
|
2013-07-27 02:35:43 -04:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2013-07-22 00:20:39 -04:00
|
|
|
"sort"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
var Ui packer.Ui
|
|
|
|
|
2013-07-27 03:11:04 -04:00
|
|
|
const DefaultTempConfigDir = "/tmp/salt"
|
|
|
|
|
2013-07-22 00:20:39 -04:00
|
|
|
type config struct {
|
2013-07-26 17:14:41 -04:00
|
|
|
// If true, run the salt-bootstrap script
|
|
|
|
SkipBootstrap bool `mapstructure:"skip_bootstrap"`
|
|
|
|
BootstrapArgs string `mapstructure:"bootstrap_args"`
|
2013-07-27 02:35:43 -04:00
|
|
|
|
|
|
|
// Local path to the salt state tree
|
|
|
|
LocalStateTree string `mapstructure:"local_state_tree"`
|
2013-07-27 03:00:01 -04:00
|
|
|
|
|
|
|
// Where files will be copied before moving to the /srv/salt directory
|
|
|
|
TempConfigDir string `mapstructure:"temp_config_dir"`
|
2013-07-22 00:20:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type Provisioner struct {
|
|
|
|
config config
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Provisioner) Prepare(raws ...interface{}) error {
|
|
|
|
var md mapstructure.Metadata
|
|
|
|
decoderConfig := &mapstructure.DecoderConfig{
|
|
|
|
Metadata: &md,
|
|
|
|
Result: &p.config,
|
|
|
|
}
|
|
|
|
|
|
|
|
decoder, err := mapstructure.NewDecoder(decoderConfig)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, raw := range raws {
|
|
|
|
err := decoder.Decode(raw)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Accumulate any errors
|
|
|
|
errs := make([]error, 0)
|
|
|
|
|
|
|
|
// Unused keys are errors
|
|
|
|
if len(md.Unused) > 0 {
|
|
|
|
sort.Strings(md.Unused)
|
|
|
|
for _, unused := range md.Unused {
|
|
|
|
if unused != "type" && !strings.HasPrefix(unused, "packer_") {
|
|
|
|
errs = append(
|
|
|
|
errs, fmt.Errorf("Unknown configuration key: %s", unused))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-27 02:35:43 -04:00
|
|
|
if p.config.LocalStateTree == "" {
|
|
|
|
errs = append(errs, errors.New("Please specify a local_state_tree"))
|
|
|
|
}
|
|
|
|
|
2013-07-27 03:00:01 -04:00
|
|
|
if p.config.TempConfigDir == "" {
|
2013-07-27 03:11:04 -04:00
|
|
|
p.config.TempConfigDir = DefaultTempConfigDir
|
2013-07-27 03:00:01 -04:00
|
|
|
}
|
|
|
|
|
2013-07-22 00:20:39 -04:00
|
|
|
if len(errs) > 0 {
|
|
|
|
return &packer.MultiError{errs}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Provisioner) Provision(ui packer.Ui, comm packer.Communicator) error {
|
|
|
|
var err error
|
|
|
|
Ui = ui
|
|
|
|
|
2013-07-26 17:14:41 -04:00
|
|
|
if !p.config.SkipBootstrap {
|
2013-07-27 21:12:18 -04:00
|
|
|
cmd := &packer.RemoteCmd{
|
|
|
|
Command: fmt.Sprintf("wget -O - http://bootstrap.saltstack.org | sudo sh -s %s", p.config.BootstrapArgs),
|
|
|
|
}
|
2013-07-26 17:14:41 -04:00
|
|
|
Ui.Say(fmt.Sprintf("Installing Salt with command %s", cmd))
|
2013-07-27 21:12:18 -04:00
|
|
|
if err = cmd.StartWithUi(comm, ui); err != nil {
|
2013-07-26 17:14:41 -04:00
|
|
|
return fmt.Errorf("Unable to install Salt: %d", err)
|
2013-07-22 00:20:39 -04:00
|
|
|
}
|
|
|
|
}
|
2013-07-27 02:35:43 -04:00
|
|
|
|
2013-07-27 03:00:01 -04:00
|
|
|
Ui.Say(fmt.Sprintf("Creating remote directory: %s", p.config.TempConfigDir))
|
2013-07-27 21:12:18 -04:00
|
|
|
cmd := &packer.RemoteCmd{Command: fmt.Sprintf("mkdir -p %s", p.config.TempConfigDir)}
|
|
|
|
if err = cmd.StartWithUi(comm, ui); err != nil {
|
2013-07-27 02:35:43 -04:00
|
|
|
return fmt.Errorf("Error creating remote salt state directory: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
Ui.Say(fmt.Sprintf("Uploading local state tree: %s", p.config.LocalStateTree))
|
2013-07-27 03:00:01 -04:00
|
|
|
if err = UploadLocalDirectory(p.config.LocalStateTree, p.config.TempConfigDir, comm); err != nil {
|
2013-07-27 02:35:43 -04:00
|
|
|
return fmt.Errorf("Error uploading local state tree to remote: %s", err)
|
|
|
|
}
|
|
|
|
|
2013-07-27 03:00:01 -04:00
|
|
|
Ui.Say(fmt.Sprintf("Moving %s to /srv/salt", p.config.TempConfigDir))
|
2013-07-27 21:12:18 -04:00
|
|
|
cmd = &packer.RemoteCmd{Command: fmt.Sprintf("sudo mv %s /srv/salt", p.config.TempConfigDir)}
|
|
|
|
if err = cmd.StartWithUi(comm, ui); err != nil {
|
2013-07-27 03:00:01 -04:00
|
|
|
return fmt.Errorf("Unable to move %s to /srv/salt: %d", p.config.TempConfigDir, err)
|
2013-07-27 02:35:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Ui.Say("Running highstate")
|
2013-07-27 21:12:18 -04:00
|
|
|
cmd = &packer.RemoteCmd{Command: "sudo salt-call --local state.highstate -l info"}
|
|
|
|
if err = cmd.StartWithUi(comm, ui); err != nil {
|
2013-07-27 02:35:43 -04:00
|
|
|
return fmt.Errorf("Error executing highstate: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
Ui.Say("Removing /srv/salt")
|
2013-07-27 21:12:18 -04:00
|
|
|
cmd = &packer.RemoteCmd{Command: "sudo rm -r /srv/salt"}
|
|
|
|
if err = cmd.StartWithUi(comm, ui); err != nil {
|
2013-07-27 02:35:43 -04:00
|
|
|
return fmt.Errorf("Unable to remove /srv/salt: %d", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func UploadLocalDirectory(localDir string, remoteDir string, comm packer.Communicator) (err error) {
|
|
|
|
visitPath := func(localPath string, f os.FileInfo, err error) (err2 error) {
|
|
|
|
localRelPath := strings.Replace(localPath, localDir, "", 1)
|
2013-07-27 03:00:01 -04:00
|
|
|
remotePath := fmt.Sprintf("%s%s", remoteDir, localRelPath)
|
2013-07-27 02:35:43 -04:00
|
|
|
if f.IsDir() && f.Name() == ".git" {
|
|
|
|
return filepath.SkipDir
|
|
|
|
}
|
|
|
|
if f.IsDir() {
|
|
|
|
// Make remote directory
|
2013-07-27 21:12:18 -04:00
|
|
|
cmd := &packer.RemoteCmd{Command: fmt.Sprintf("mkdir -p %s", remotePath)}
|
|
|
|
if err = cmd.StartWithUi(comm, Ui); err != nil {
|
2013-07-27 02:35:43 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Upload file to existing directory
|
|
|
|
file, err := os.Open(localPath)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error opening file: %s", err)
|
|
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
|
|
|
|
Ui.Say(fmt.Sprintf("Uploading file %s: %s", localPath, remotePath))
|
2013-07-27 21:12:18 -04:00
|
|
|
if err = comm.Upload(remotePath, file); err != nil {
|
2013-07-27 02:35:43 -04:00
|
|
|
return fmt.Errorf("Error uploading file: %s", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
err = filepath.Walk(localDir, visitPath)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error uploading local directory %s: %s", localDir, err)
|
|
|
|
}
|
|
|
|
|
2013-07-22 00:20:39 -04:00
|
|
|
return nil
|
|
|
|
}
|