summaryrefslogtreecommitdiff
path: root/pkg/machine/e2e/config_stop.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/machine/e2e/config_stop.go')
-rw-r--r--pkg/machine/e2e/config_stop.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/pkg/machine/e2e/config_stop.go b/pkg/machine/e2e/config_stop.go
deleted file mode 100644
index 04dcfb524..000000000
--- a/pkg/machine/e2e/config_stop.go
+++ /dev/null
@@ -1,16 +0,0 @@
-package e2e
-
-type stopMachine struct {
- /*
- No command line args other than a machine vm name (also not required)
- */
- cmd []string
-}
-
-func (s stopMachine) buildCmd(m *machineTestBuilder) []string {
- cmd := []string{"machine", "stop"}
- if len(m.name) > 0 {
- cmd = append(cmd, m.name)
- }
- return cmd
-}