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")
|
|
)
|