mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-09-02 21:57:52 +00:00
11 lines
221 B
Go
11 lines
221 B
Go
package e2e_test
|
|
|
|
type restartMachine struct{}
|
|
|
|
func (r restartMachine) buildCmd(m *machineTestBuilder) []string {
|
|
cmd := []string{"machine", "restart"}
|
|
if len(m.name) > 0 {
|
|
cmd = append(cmd, m.name)
|
|
}
|
|
return cmd
|
|
}
|