1
0
mirror of https://github.com/rancher/os.git synced 2025-06-27 23:36:49 +00:00
os/cmd/wait/wait.go
2015-04-04 09:55:41 -07:00

20 lines
308 B
Go

package wait
import (
"os"
"github.com/Sirupsen/logrus"
"github.com/rancherio/os/config"
"github.com/rancherio/os/docker"
)
func Main() {
_, err := docker.NewClient(config.DOCKER_HOST)
if err != nil {
logrus.Errorf("Failed to conect to Docker")
os.Exit(1)
}
logrus.Infof("Docker is ready")
}