mirror of
https://github.com/ceph/ceph
synced 2024-12-26 21:43:10 +00:00
Merge pull request #7756 from dachary/wip-ceph-disk-args
ceph-disk: deactivate / destroy PATH arg are optional Reviewed-by: Kefu Chai <kchai@redhat.com>
This commit is contained in:
commit
0ae120dbd0
@ -4284,7 +4284,6 @@ def make_activate_parser(subparsers):
|
||||
activate_parser.add_argument(
|
||||
'path',
|
||||
metavar='PATH',
|
||||
nargs=1,
|
||||
help='path to block device or directory',
|
||||
)
|
||||
activate_parser.add_argument(
|
||||
@ -4417,7 +4416,6 @@ def make_suppress_parser(subparsers):
|
||||
suppress_parser.add_argument(
|
||||
'path',
|
||||
metavar='PATH',
|
||||
nargs=1,
|
||||
help='path to block device or directory',
|
||||
)
|
||||
suppress_parser.set_defaults(
|
||||
@ -4430,7 +4428,6 @@ def make_suppress_parser(subparsers):
|
||||
unsuppress_parser.add_argument(
|
||||
'path',
|
||||
metavar='PATH',
|
||||
nargs=1,
|
||||
help='path to block device or directory',
|
||||
)
|
||||
unsuppress_parser.set_defaults(
|
||||
@ -4452,7 +4449,7 @@ def make_deactivate_parser(subparsers):
|
||||
deactivate_parser.add_argument(
|
||||
'path',
|
||||
metavar='PATH',
|
||||
nargs=1,
|
||||
nargs='?',
|
||||
help='path to block device or directory',
|
||||
)
|
||||
deactivate_parser.add_argument(
|
||||
@ -4483,7 +4480,7 @@ def make_destroy_parser(subparsers):
|
||||
destroy_parser.add_argument(
|
||||
'path',
|
||||
metavar='PATH',
|
||||
nargs=1,
|
||||
nargs='?',
|
||||
help='path to block device or directory',
|
||||
)
|
||||
destroy_parser.add_argument(
|
||||
|
Loading…
Reference in New Issue
Block a user