2013-12-21 17:38:06 -08:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2015-05-27 14:01:08 -07:00
|
|
|
|
2017-04-04 13:39:01 -07:00
|
|
|
"github.com/hashicorp/packer/common"
|
|
|
|
"github.com/hashicorp/packer/template/interpolate"
|
2013-12-21 17:38:06 -08:00
|
|
|
)
|
|
|
|
|
|
|
|
type OutputConfig struct {
|
|
|
|
OutputDir string `mapstructure:"output_directory"`
|
|
|
|
}
|
|
|
|
|
2015-05-27 14:01:08 -07:00
|
|
|
func (c *OutputConfig) Prepare(ctx *interpolate.Context, pc *common.PackerConfig) []error {
|
2013-12-21 17:38:06 -08:00
|
|
|
if c.OutputDir == "" {
|
|
|
|
c.OutputDir = fmt.Sprintf("output-%s", pc.PackerBuildName)
|
|
|
|
}
|
|
|
|
|
2015-06-13 16:58:37 -04:00
|
|
|
return nil
|
2013-12-21 17:38:06 -08:00
|
|
|
}
|