mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-05 00:15:44 +00:00
The podman module paths are moving from github.com/containers/podman to go.podman.io/podman. This will help with future mobility. Signed-off-by: Brent Baude <bbaude@redhat.com>
21 lines
510 B
Go
21 lines
510 B
Go
package farm
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
"go.podman.io/podman/v6/cmd/podman/registry"
|
|
"go.podman.io/podman/v6/cmd/podman/validate"
|
|
)
|
|
|
|
// Command: podman _farm_
|
|
var farmCmd = &cobra.Command{
|
|
Use: "farm",
|
|
Short: "Farm out builds to remote machines",
|
|
Long: "Farm out builds to remote machines that podman can connect to via podman system connection",
|
|
RunE: validate.SubCommandExists,
|
|
}
|
|
|
|
func init() {
|
|
registry.Commands = append(registry.Commands, registry.CliCommand{
|
|
Command: farmCmd,
|
|
})
|
|
}
|