2013-05-07 14:39:32 -04:00
|
|
|
package build
|
2013-04-21 22:04:35 -04:00
|
|
|
|
2013-05-08 17:58:06 -04:00
|
|
|
import (
|
|
|
|
"github.com/mitchellh/packer/packer"
|
|
|
|
"io/ioutil"
|
|
|
|
)
|
2013-04-21 22:04:35 -04:00
|
|
|
|
2013-05-07 14:39:32 -04:00
|
|
|
type Command byte
|
2013-04-21 22:04:35 -04:00
|
|
|
|
2013-05-08 17:58:06 -04:00
|
|
|
func (Command) Run(env packer.Environment, args []string) int {
|
|
|
|
if len(args) != 1 {
|
|
|
|
// TODO: Error message
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read the file into a byte array so that we can parse the template
|
|
|
|
tplData, err := ioutil.ReadFile(args[0])
|
|
|
|
if err != nil {
|
|
|
|
// TODO: Error message
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse the template into a machine-usable format
|
|
|
|
_, err = packer.ParseTemplate(tplData)
|
|
|
|
if err != nil {
|
|
|
|
// TODO: error message
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Go through each builder and compile the builds that we care about
|
|
|
|
//builds := make([]Build, 0, len(tpl.Builders))
|
|
|
|
//for name, rawConfig := range tpl.Builders {
|
|
|
|
//builder := env.Builder(name, rawConfig)
|
|
|
|
//build := env.Build(name, builder)
|
|
|
|
//builds = append(builds, build)
|
|
|
|
//}
|
|
|
|
|
2013-04-21 22:04:35 -04:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (Command) Synopsis() string {
|
|
|
|
return "build image(s) from tempate"
|
|
|
|
}
|