mapstructure close quotes

This commit is contained in:
Alex Dadgar 2015-11-15 19:05:35 -08:00
parent 0b70879554
commit fa60d86fe5
2 changed files with 3 additions and 3 deletions

View file

@ -31,9 +31,9 @@ type DockerDriverConfig struct {
NetworkMode string `mapstructure:"network_mode"`
PortMap []map[string]int `mapstructure:"port_map"`
UserName string `mapstructure:"auth.username"`
Password string `mapstructure:"auth.password`
Password string `mapstructure:"auth.password"`
Email string `mapstructure:"auth.email"`
ServerAddress string `mapstructure:"auth.server_address`
ServerAddress string `mapstructure:"auth.server_address"`
Privileged bool `mapstructure:"privileged"`
DNS string `mapstructure:"dns_server"`
SearchDomains string `mapstructure:"search_domains"`

View file

@ -32,7 +32,7 @@ type QemuDriver struct {
}
type QemuDriverConfig struct {
ArtifactSource string `mapstructure:"artifact_source`
ArtifactSource string `mapstructure:"artifact_source"`
Checksum string `mapstructure:"checksum"`
Accelerator string `mapstructure:"accelerator"`
GuestPorts string `mapstructure:"guest_ports"`