20 lines
429 B
Go
20 lines
429 B
Go
package common
|
|
|
|
import (
|
|
"github.com/mitchellh/packer/template/interpolate"
|
|
)
|
|
|
|
// FloppyConfig is configuration related to created floppy disks and attaching
|
|
// them to a Parallels virtual machine.
|
|
type FloppyConfig struct {
|
|
FloppyFiles []string `mapstructure:"floppy_files"`
|
|
}
|
|
|
|
func (c *FloppyConfig) Prepare(ctx *interpolate.Context) []error {
|
|
if c.FloppyFiles == nil {
|
|
c.FloppyFiles = make([]string, 0)
|
|
}
|
|
|
|
return nil
|
|
}
|