diff options
author | OpenGnSys Support Team <soporte-og@soleta.eu> | 2023-12-12 11:15:44 +0100 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2023-12-12 11:33:48 +0100 |
commit | b97c4d157adfcbdaa0f7ede40bd68e54c0aaaef3 (patch) | |
tree | 57aaf8092a7a54ea5c967409fe364ec38c546a0e /src/live | |
parent | d34ef0ab25ab735f6c96fcf88da480c91a9c6a2c (diff) |
live: report image size when creating image
add .size json field to report the real size of the image file.
Diffstat (limited to 'src/live')
-rw-r--r-- | src/live/ogOperations.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/live/ogOperations.py b/src/live/ogOperations.py index a8412c6..66f3024 100644 --- a/src/live/ogOperations.py +++ b/src/live/ogOperations.py @@ -478,6 +478,15 @@ class OgLiveOperations: logging.exception('Exception when running "image create" subprocess') raise ValueError('Error: Incorrect command value') + try: + stat = os.stat(image_path) + size = stat.st_size + except: + logging.info(f'cannot retrieve size from {image_path}') + size = 0 + + image_info.size = size + self._write_md5_file(f'/opt/opengnsys/images/{name}.img') self._restartBrowser(self._url) |