diff options
author | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-08-06 18:14:30 +0200 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-08-06 18:16:23 +0200 |
commit | 9a52df7711b67dbc8ad6bcd647031f01b4725f30 (patch) | |
tree | 82cb89c88ef02f6b0e749347115a7a76f965669f /src | |
parent | 16251d42d3254ce0ab39d05768b1297c339891ee (diff) |
postinstall: add logging to report postconfiguration script invocation
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 c59d497..75cc609 100644 --- a/src/utils/postinstall.py +++ b/src/utils/postinstall.py @@ -93,6 +93,8 @@ def configure_os_custom(disk, partition): if not shutil.which('configureOsCustom'): raise OgError('configureOsCustom not found') + logging.info(f'Found configureOsCustom script, invoking it...') + cmd_configure = f"configureOsCustom {disk} {partition}" try: |