mirror of
https://github.com/docker/docs.git
synced 2026-03-27 22:38:54 +07:00
Signed-off-by: Simon Thulborn <simon+github@thulborn.com> Signed-off-by: Nathan LeClaire <nathan.leclaire@gmail.com>
12 lines
227 B
Go
12 lines
227 B
Go
package provision
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrDetectionFailed = errors.New("OS type not recognized")
|
|
ErrSSHCommandFailed = errors.New("SSH command failure")
|
|
ErrNotImplemented = errors.New("Runtime not implemented")
|
|
)
|