]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
ceph-volume devices.lvm refactor importing api to come from api/lvm.py
authorAlfredo Deza <adeza@redhat.com>
Tue, 3 Oct 2017 20:17:08 +0000 (16:17 -0400)
committerAlfredo Deza <adeza@redhat.com>
Wed, 4 Oct 2017 10:38:18 +0000 (06:38 -0400)
Signed-off-by: Alfredo Deza <adeza@redhat.com>
src/ceph-volume/ceph_volume/devices/lvm/activate.py
src/ceph-volume/ceph_volume/devices/lvm/listing.py
src/ceph-volume/ceph_volume/devices/lvm/prepare.py

index 5a755672a95dc243e9d7522586c3da00cb13b1e1..b292b89af865f50a8000667b4734ecdcd3362841 100644 (file)
@@ -4,7 +4,7 @@ from textwrap import dedent
 from ceph_volume import process, conf, decorators
 from ceph_volume.util import system, disk
 from ceph_volume.systemd import systemctl
-from . import api
+from ceph_volume.api import lvm as api
 
 
 def activate_filestore(lvs):
index 4f2805e715eb5118d6d837fc66729304c560f33e..a063770cacaee1814ed90700b6ffb9f386d64df3 100644 (file)
@@ -5,7 +5,7 @@ import logging
 from textwrap import dedent
 from ceph_volume import decorators
 from ceph_volume.util import disk
-from . import api
+from ceph_volume.api import lvm as api
 
 logger = logging.getLogger(__name__)
 
index 85a43ca583b7f309d64584df691c35404f23830c..b69c519bb06b5deb42279f0fde92ff7a9b7304ec 100644 (file)
@@ -5,7 +5,7 @@ from textwrap import dedent
 from ceph_volume.util import prepare as prepare_utils
 from ceph_volume.util import system, disk
 from ceph_volume import conf, decorators, terminal
-from . import api
+from ceph_volume.api import lvm as api
 from .common import prepare_parser