summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-01-19 16:56:17 -0500
committerGitHub <noreply@github.com>2021-01-19 16:56:17 -0500
commit5e7262ddf595f9187d01e12f5dcee2fe1c713798 (patch)
tree6cde028a76610dfc85eb7e27af7743af2e9842bb /cmd
parent37470c4d200c5cde2f8e233dbaa6d200d94919cc (diff)
parenta45d22a1ddd2840cf8c3a38540aa8683cc0d5c7d (diff)
downloadpodman-5e7262ddf595f9187d01e12f5dcee2fe1c713798.tar.gz
podman-5e7262ddf595f9187d01e12f5dcee2fe1c713798.tar.bz2
podman-5e7262ddf595f9187d01e12f5dcee2fe1c713798.zip
Merge pull request #9021 from Luap99/podman-network-exists
podman network exists
Diffstat (limited to 'cmd')
-rw-r--r--cmd/podman/networks/exists.go40
1 files changed, 40 insertions, 0 deletions
diff --git a/cmd/podman/networks/exists.go b/cmd/podman/networks/exists.go
new file mode 100644
index 000000000..2eb485b36
--- /dev/null
+++ b/cmd/podman/networks/exists.go
@@ -0,0 +1,40 @@
+package network
+
+import (
+ "github.com/containers/podman/v2/cmd/podman/common"
+ "github.com/containers/podman/v2/cmd/podman/registry"
+ "github.com/containers/podman/v2/pkg/domain/entities"
+ "github.com/spf13/cobra"
+)
+
+var (
+ networkExistsDescription = `If the named network exists, podman network exists exits with 0, otherwise the exit code will be 1.`
+ networkExistsCommand = &cobra.Command{
+ Use: "exists NETWORK",
+ Short: "network exists",
+ Long: networkExistsDescription,
+ RunE: networkExists,
+ Example: `podman network exists net1`,
+ Args: cobra.ExactArgs(1),
+ ValidArgsFunction: common.AutocompleteNetworks,
+ }
+)
+
+func init() {
+ registry.Commands = append(registry.Commands, registry.CliCommand{
+ Mode: []entities.EngineMode{entities.ABIMode, entities.TunnelMode},
+ Command: networkExistsCommand,
+ Parent: networkCmd,
+ })
+}
+
+func networkExists(cmd *cobra.Command, args []string) error {
+ response, err := registry.ContainerEngine().NetworkExists(registry.GetContext(), args[0])
+ if err != nil {
+ return err
+ }
+ if !response.Value {
+ registry.SetExitCode(1)
+ }
+ return nil
+}