1
0
mirror of https://github.com/rancher/os.git synced 2025-07-16 08:05:51 +00:00
os/cmd/ros-installer/main.go

20 lines
294 B
Go
Raw Normal View History

2021-08-31 18:14:03 +00:00
package main
import (
"flag"
"github.com/rancher/os/pkg/install"
"github.com/sirupsen/logrus"
)
var (
output = flag.Bool("automatic", false, "Check for and run automatic installation")
)
func main() {
flag.Parse()
if err := install.Run(*output); err != nil {
logrus.Fatal(err)
}
}