diff options
author | baude <bbaude@redhat.com> | 2018-12-20 08:58:20 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2018-12-20 09:00:52 -0600 |
commit | 1f3726f2cf9ee4fcdb6c78dd2858e6c6bf135b05 (patch) | |
tree | e7dbbe1a7078e7586306881b8d7956afca2a4153 /cmd/podman | |
parent | 65c5883f5c887c567bf0db30af1e178ac052261c (diff) | |
download | podman-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/podman')
-rw-r--r-- | cmd/podman/rmi.go | 24 |
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, } |