packer-cn/common/floppy_config.go

40 lines
833 B
Go
Raw Normal View History

package common
import (
2016-07-26 15:42:04 -04:00
"fmt"
"os"
"github.com/mitchellh/packer/template/interpolate"
)
type FloppyConfig struct {
2016-10-11 17:43:50 -04:00
FloppyFiles []string `mapstructure:"floppy_files"`
FloppyDirectories []string `mapstructure:"floppy_dirs"`
}
func (c *FloppyConfig) Prepare(ctx *interpolate.Context) []error {
2016-07-26 15:42:04 -04:00
var errs []error
if c.FloppyFiles == nil {
c.FloppyFiles = make([]string, 0)
}
2016-07-26 15:42:04 -04:00
for _, path := range c.FloppyFiles {
if _, err := os.Stat(path); err != nil {
errs = append(errs, fmt.Errorf("Bad Floppy disk file '%s': %s", path, err))
}
}
if c.FloppyDirectories == nil {
c.FloppyDirectories = make([]string, 0)
}
for _, path := range c.FloppyDirectories {
if _, err := os.Stat(path); err != nil {
errs = append(errs, fmt.Errorf("Bad Floppy disk directory '%s': %s", path, err))
}
}
2016-07-26 15:42:04 -04:00
return errs
}