Skip to content
This repository was archived by the owner on Feb 27, 2018. It is now read-only.

Commit 780245e

Browse files
committed
Revert "Add Fusion driver and vmx template"
1 parent 63ff5c8 commit 780245e

8 files changed

Lines changed: 3 additions & 372 deletions

File tree

cmds.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ import (
1515

1616
"github.com/boot2docker/boot2docker-cli/driver"
1717
_ "github.com/boot2docker/boot2docker-cli/dummy"
18-
_ "github.com/boot2docker/boot2docker-cli/fusion"
1918
_ "github.com/boot2docker/boot2docker-cli/virtualbox"
2019
)
2120

driver/driver.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ type Machine interface {
4242
AttachStorage(ctlName string, medium StorageMedium) error
4343
GetState() MachineState
4444
GetName() string
45-
GetHostname() string
4645
GetSerialFile() string
4746
GetDockerPort() uint
4847
GetSSHPort() uint

dummy/machine.go

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,8 @@ func ConfigFlags(B2D *driver.MachineConfig, flags *flag.FlagSet) error {
4747

4848
// Machine information.
4949
type Machine struct {
50-
UUID string
5150
Name string
52-
Hostname string
51+
UUID string
5352
State driver.MachineState
5453
CPUs uint
5554
Memory uint // main memory (in MB)
@@ -123,11 +122,6 @@ func (m *Machine) GetName() string {
123122
return m.Name
124123
}
125124

126-
// Get machine hostname
127-
func (m *Machine) GetHostname() string {
128-
return m.Hostname
129-
}
130-
131125
// Get current state
132126
func (m *Machine) GetState() driver.MachineState {
133127
return m.State

fusion/machine.go

Lines changed: 0 additions & 278 deletions
This file was deleted.

fusion/vmrun.go

Lines changed: 0 additions & 48 deletions
This file was deleted.

fusion/vmx.go

Lines changed: 0 additions & 31 deletions
This file was deleted.

0 commit comments

Comments
 (0)