From 02796a4c49ea7859deca636f4664e39c915df414 Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Wed, 21 Jun 2023 14:05:18 -0400 Subject: [PATCH] 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 --- src/cephadm/cephadm.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/cephadm/cephadm.py b/src/cephadm/cephadm.py index 3c04eadb9a8..a63babcdf72 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, -- 2.39.5