diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/utils/postinstall.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/utils/postinstall.py b/src/utils/postinstall.py index 1420c18..e0bad71 100644 --- a/src/utils/postinstall.py +++ b/src/utils/postinstall.py @@ -228,6 +228,8 @@ def configure_os(disk, partition): device = get_partition_device(disk, partition) mountpoint = device.replace('dev', 'mnt') + logging.info(f'Configuring OS at {device}...') + if not mount_mkdir(device, mountpoint): raise OgError(f'Cannot probe OS family. Unable to mount {device} into {mountpoint}') |