From: Alfredo Deza Date: Thu, 12 Jul 2018 20:11:29 +0000 (-0400) Subject: ceph-volume lvm.batch update help docs from auto to batch X-Git-Tag: v14.0.1~847^2~6 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=226a5389ab3379943d3af35e3e1a86481a3980b2;p=ceph-ci.git ceph-volume lvm.batch update help docs from auto to batch Signed-off-by: Alfredo Deza --- diff --git a/src/ceph-volume/ceph_volume/devices/lvm/batch.py b/src/ceph-volume/ceph_volume/devices/lvm/batch.py index f8a2169a87f..4f56debc105 100644 --- a/src/ceph-volume/ceph_volume/devices/lvm/batch.py +++ b/src/ceph-volume/ceph_volume/devices/lvm/batch.py @@ -89,7 +89,7 @@ def get_strategy(devices, args): return backend(devices, args) -class Auto(object): +class Batch(object): help = 'Automatically size devices for multi-OSD provisioning with minimal interaction' @@ -101,11 +101,11 @@ class Auto(object): Usage: - ceph-volume lvm auto [DEVICE...] + ceph-volume lvm batch [DEVICE...] Optional reporting on possible outcomes is enabled with --report - ceph-volume lvm auto --report [DEVICE...] + ceph-volume lvm batch --report [DEVICE...] """) def __init__(self, argv): @@ -166,7 +166,7 @@ class Auto(object): @decorators.needs_root def main(self): parser = argparse.ArgumentParser( - prog='ceph-volume auto', + prog='ceph-volume lvm batch', formatter_class=argparse.RawDescriptionHelpFormatter, description=self.print_help(), )