()
| 1932 | } |
| 1933 | |
| 1934 | func (i insufficientSpaceError) Error() string { |
| 1935 | return fmt.Sprintf("Insufficient remaining disk space (%dB) for ephemeral partition (min: %dB)", i.spaceFound, i.spaceRequired) |
| 1936 | } |
| 1937 | |
| 1938 | func (p linux) Shutdown() error { |
| 1939 | _, _, _, err := p.cmdRunner.RunCommand("shutdown", "-P", "0") |
no outgoing calls
no test coverage detected