diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/live/ogOperations.py | 2 | ||||
-rw-r--r-- | src/utils/fs.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/live/ogOperations.py b/src/live/ogOperations.py index 15e563f..7958e9e 100644 --- a/src/live/ogOperations.py +++ b/src/live/ogOperations.py @@ -572,7 +572,7 @@ class OgLiveOperations: logging.info(f'partclone process exited with code {p1.returncode}') logging.info(f'lzop process exited with code {p2.returncode}') - ogExtendFs(disk, partition) + extend_filesystem(disk, partition) if os.access(f'{image_path}', os.R_OK) == False: raise OgError(f'Cannot access partclone image file {image_path}') diff --git a/src/utils/fs.py b/src/utils/fs.py index 8f45ad5..3de8ee2 100644 --- a/src/utils/fs.py +++ b/src/utils/fs.py @@ -117,7 +117,7 @@ def ogReduceFs(disk, part): return ret -def ogExtendFs(disk, part): +def extend_filesystem(disk, part): """ Grow filesystem of a partition. Supports ext4 and ntfs partitions. Unsupported filesystem or invalid paths don't raise an exception, |