summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2018-12-20 08:58:20 -0600
committerbaude <bbaude@redhat.com>2018-12-20 09:00:52 -0600
commit1f3726f2cf9ee4fcdb6c78dd2858e6c6bf135b05 (patch)
treee7dbbe1a7078e7586306881b8d7956afca2a4153 /cmd
parent65c5883f5c887c567bf0db30af1e178ac052261c (diff)
downloadpodman-1f3726f2cf9ee4fcdb6c78dd2858e6c6bf135b05.tar.gz
podman-1f3726f2cf9ee4fcdb6c78dd2858e6c6bf135b05.tar.bz2
podman-1f3726f2cf9ee4fcdb6c78dd2858e6c6bf135b05.zip
skip test for blkio.weight when kernel does not support it
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/podman/rmi.go24
1 files changed, 12 insertions, 12 deletions
diff --git a/cmd/podman/rmi.go b/cmd/podman/rmi.go
index 910c7ba35..5e8ac81a2 100644
--- a/cmd/podman/rmi.go
+++ b/cmd/podman/rmi.go
@@ -24,22 +24,22 @@ var (
},
}
rmiCommand = cli.Command{
- Name: "rmi",
- Usage: "Removes one or more images from local storage",
- Description: rmiDescription,
- Action: rmiCmd,
- ArgsUsage: "IMAGE-NAME-OR-ID [...]",
- Flags: sortFlags(rmiFlags),
+ Name: "rmi",
+ Usage: "Removes one or more images from local storage",
+ Description: rmiDescription,
+ Action: rmiCmd,
+ ArgsUsage: "IMAGE-NAME-OR-ID [...]",
+ Flags: sortFlags(rmiFlags),
UseShortOptionHandling: true,
OnUsageError: usageErrorHandler,
}
rmImageCommand = cli.Command{
- Name: "rm",
- Usage: "removes one or more images from local storage",
- Description: rmiDescription,
- Action: rmiCmd,
- ArgsUsage: "IMAGE-NAME-OR-ID [...]",
- Flags: rmiFlags,
+ Name: "rm",
+ Usage: "removes one or more images from local storage",
+ Description: rmiDescription,
+ Action: rmiCmd,
+ ArgsUsage: "IMAGE-NAME-OR-ID [...]",
+ Flags: rmiFlags,
UseShortOptionHandling: true,
OnUsageError: usageErrorHandler,
}