1
0
Fork 0

Implements check for required commands

timestamps
dump_stack() 2018-11-19 15:31:25 +00:00
parent cc3f536c62
commit 119c2eea58
1 changed files with 9 additions and 0 deletions

View File

@ -7,6 +7,7 @@ package main
import (
"log"
"os"
"os/exec"
"os/user"
kingpin "gopkg.in/alecthomas/kingpin.v2"
@ -57,6 +58,14 @@ func main() {
kernelCommand := app.Command("kernel", "Manipulate kernels")
kernelListCommand := kernelCommand.Command("list", "List kernels")
// Check for required commands
for _, cmd := range []string{"timeout", "docker", "qemu"} {
_, err := exec.Command("which", cmd).CombinedOutput()
if err != nil {
log.Fatalln("Command not found:", cmd)
}
}
kingpin.MustParse(app.Parse(os.Args[1:]))
kcfg, err := config.ReadKernelConfig(*kcfgPath)