dbca-utils 3.0.5__tar.gz → 3.0.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {dbca_utils-3.0.5 → dbca_utils-3.0.7}/PKG-INFO +1 -1
- {dbca_utils-3.0.5 → dbca_utils-3.0.7}/pyproject.toml +1 -1
- {dbca_utils-3.0.5 → dbca_utils-3.0.7}/src/dbca_utils/healthcheck/healthcheck.py +11 -11
- {dbca_utils-3.0.5 → dbca_utils-3.0.7}/LICENSE +0 -0
- {dbca_utils-3.0.5 → dbca_utils-3.0.7}/README.md +0 -0
- {dbca_utils-3.0.5 → dbca_utils-3.0.7}/src/dbca_utils/__init__.py +0 -0
- {dbca_utils-3.0.5 → dbca_utils-3.0.7}/src/dbca_utils/apps.py +0 -0
- {dbca_utils-3.0.5 → dbca_utils-3.0.7}/src/dbca_utils/healthcheck/__init__.py +0 -0
- {dbca_utils-3.0.5 → dbca_utils-3.0.7}/src/dbca_utils/healthcheck/urls.py +0 -0
- {dbca_utils-3.0.5 → dbca_utils-3.0.7}/src/dbca_utils/middleware.py +0 -0
- {dbca_utils-3.0.5 → dbca_utils-3.0.7}/src/dbca_utils/models.py +0 -0
- {dbca_utils-3.0.5 → dbca_utils-3.0.7}/src/dbca_utils/utils.py +0 -0
- {dbca_utils-3.0.5 → dbca_utils-3.0.7}/tests/__init__.py +0 -0
- {dbca_utils-3.0.5 → dbca_utils-3.0.7}/tests/apps.py +0 -0
- {dbca_utils-3.0.5 → dbca_utils-3.0.7}/tests/migrations/0001_initial.py +0 -0
- {dbca_utils-3.0.5 → dbca_utils-3.0.7}/tests/migrations/__init__.py +0 -0
- {dbca_utils-3.0.5 → dbca_utils-3.0.7}/tests/models.py +0 -0
- {dbca_utils-3.0.5 → dbca_utils-3.0.7}/tests/settings.py +0 -0
- {dbca_utils-3.0.5 → dbca_utils-3.0.7}/tests/templates/tests/test_model_list.html +0 -0
- {dbca_utils-3.0.5 → dbca_utils-3.0.7}/tests/tests.py +0 -0
- {dbca_utils-3.0.5 → dbca_utils-3.0.7}/tests/urls.py +0 -0
- {dbca_utils-3.0.5 → dbca_utils-3.0.7}/tests/views.py +0 -0
|
@@ -143,17 +143,17 @@ def get_persistent_volumes_data():
|
|
|
143
143
|
line = line.lower()
|
|
144
144
|
if line.startswith("filesystem") :
|
|
145
145
|
datarow = True
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
146
|
+
continue
|
|
147
|
+
source,target,size = line.split()
|
|
148
|
+
size = int(size)
|
|
149
|
+
source = source.lower()
|
|
150
|
+
if source == "overlay":
|
|
151
|
+
overlaysize = size
|
|
152
|
+
elif source.startswith("//"):
|
|
153
|
+
volumes.append(target)
|
|
154
|
+
elif source.startswith("/dev/sd"):
|
|
155
|
+
#the volume can be same filesystem as the volume 'overlay'
|
|
156
|
+
volumesdata[target] = size
|
|
157
157
|
|
|
158
158
|
for k,v in volumesdata.items():
|
|
159
159
|
if v == overlaysize:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|