generic: remove unneeded config

Signed-off-by: Evan Hazlett <ejhazlett@gmail.com>
This commit is contained in:
Evan Hazlett 2015-04-06 00:35:52 -04:00
parent f4c6730539
commit 94ccd5cd5a
1 changed files with 0 additions and 8 deletions

View File

@ -15,10 +15,6 @@ import (
"github.com/docker/machine/utils"
)
const (
dockerConfigDir = "/etc/docker"
)
type Driver struct {
MachineName string
IPAddress string
@ -224,10 +220,6 @@ func (d *Driver) Kill() error {
return nil
}
func (d *Driver) GetDockerConfigDir() string {
return dockerConfigDir
}
func (d *Driver) sshKeyPath() string {
return filepath.Join(d.storePath, "id_rsa")
}