コード例 #1
0
ファイル: cmd.go プロジェクト: taskcluster/taskcluster-worker
func init() {
	commands.Register("qemu-guest-tools", cmd{})
}
コード例 #2
0
func init() {
	// This command should only be available on linux, so we register it in a file
	// that ends with _linux.go
	commands.Register("qemu-run", cmd{})
}
コード例 #3
0
func init() {
	commands.Register("daemon", cmd{})
}
コード例 #4
0
ファイル: cmd.go プロジェクト: taskcluster/taskcluster-worker
func init() {
	if goruntime.GOOS == "windows" {
		defaultShell = "cmd.exe"
	}
	commands.Register("shell-server", cmd{})
}
コード例 #5
0
func init() {
	commands.Register("work", cmd{})
}
コード例 #6
0
func init() {
	commands.Register("help", cmd{})
}
コード例 #7
0
ファイル: cmd.go プロジェクト: taskcluster/taskcluster-worker
func init() {
	commands.Register("shell", cmd{})
}