Files
Olares/cli/cmd/ctl/os/root.go

24 lines
376 B
Go

package os
import (
"github.com/spf13/cobra"
)
func NewOSCommands() []*cobra.Command {
return []*cobra.Command{
NewCmdPrecheck(),
NewCmdRootDownload(),
NewCmdPrepare(),
NewCmdInstallOs(),
NewCmdUninstallOs(),
NewCmdChangeIP(),
NewCmdRelease(),
NewCmdPrintInfo(),
NewCmdBackup(),
NewCmdLogs(),
NewCmdStart(),
NewCmdStop(),
NewCmdUpgradeOs(),
}
}