summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorOpenGnSys Support Team <soporte-og@soleta.eu>2024-08-06 18:14:30 +0200
committerOpenGnSys Support Team <soporte-og@soleta.eu>2024-08-06 18:16:23 +0200
commit9a52df7711b67dbc8ad6bcd647031f01b4725f30 (patch)
tree82cb89c88ef02f6b0e749347115a7a76f965669f /src
parent16251d42d3254ce0ab39d05768b1297c339891ee (diff)
postinstall: add logging to report postconfiguration script invocation
Diffstat (limited to 'src')
-rw-r--r--src/utils/postinstall.py2
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: