aboutsummaryrefslogtreecommitdiff
path: root/cmd/podman/networks/network.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/podman/networks/network.go')
-rw-r--r--cmd/podman/networks/network.go14
1 files changed, 6 insertions, 8 deletions
diff --git a/cmd/podman/networks/network.go b/cmd/podman/networks/network.go
index a0e412098..7f38cd2cd 100644
--- a/cmd/podman/networks/network.go
+++ b/cmd/podman/networks/network.go
@@ -1,28 +1,26 @@
-package images
+package network
import (
"github.com/containers/libpod/cmd/podman/registry"
+ "github.com/containers/libpod/cmd/podman/validate"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/spf13/cobra"
)
var (
// Command: podman _network_
- cmd = &cobra.Command{
+ networkCmd = &cobra.Command{
Use: "network",
Short: "Manage networks",
Long: "Manage networks",
TraverseChildren: true,
- RunE: registry.SubCommandExists,
+ RunE: validate.SubCommandExists,
}
)
-// TODO add the following to main.go to get networks back onto the
-// command list.
-//_ "github.com/containers/libpod/cmd/podman/networks"
func init() {
registry.Commands = append(registry.Commands, registry.CliCommand{
- Mode: []entities.EngineMode{entities.ABIMode},
- Command: cmd,
+ Mode: []entities.EngineMode{entities.ABIMode, entities.TunnelMode},
+ Command: networkCmd,
})
}