live: move filesystem expansion out of OS configuration

just a clean up.
master
OpenGnSys Support Team 2024-08-06 18:39:12 +02:00
parent 9a52df7711
commit 9ee5f4adaa
2 changed files with 2 additions and 2 deletions

View File

@ -497,6 +497,8 @@ class OgLiveOperations:
elif ctype == 'TIPTORRENT':
self._restore_image_tiptorrent(repo, name, partdev)
extend_filesystem(disk, partition)
configure_os(disk, partition)
self.refresh(ogRest)

View File

@ -234,8 +234,6 @@ def configure_os(disk, partition):
os_family = get_os_family(mountpoint)
umount(mountpoint)
extend_filesystem(disk, partition)
if os_family == OSFamily.WINDOWS:
configure_os_windows(disk, partition)
elif os_family == OSFamily.LINUX: