From: John Mulligan Date: Wed, 21 Jun 2023 18:05:18 +0000 (-0400) Subject: cephadm: add BasicContainer stub class X-Git-Tag: v19.0.0~711^2~21 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=02796a4c49ea7859deca636f4664e39c915df414;p=ceph.git cephadm: add BasicContainer stub class Add a BasicContainer class that will act as a base class for CephContainer and any future XyzContainer classes. The class is currently a stub that provides no functionality. Signed-off-by: John Mulligan --- diff --git a/src/cephadm/cephadm.py b/src/cephadm/cephadm.py index 3c04eadb9a82..a63babcdf721 100755 --- a/src/cephadm/cephadm.py +++ b/src/cephadm/cephadm.py @@ -4396,7 +4396,11 @@ WantedBy=ceph-{fsid}.target ################################## -class CephContainer: +class BasicContainer: + pass + + +class CephContainer(BasicContainer): def __init__(self, ctx: CephadmContext, image: str,