index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-05-01 10:13:33 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-01 10:13:33 +0000 |
commit | 7f2334bbfecba513ce131986753e78b36dc95a9a (patch) | |
tree | 5ba03b7e2ecc37b72cb83f3a8908ab747028f695 /examples | |
parent | b58bec202ab47259d5a3855032aca70fa8f36b91 (diff) | |
parent | ea0d0a88174dbf7d8cad7d957ab3fd2ca00e02a4 (diff) |
-rw-r--r-- | examples/guided.py | 8 |
diff --git a/examples/guided.py b/examples/guided.py index c281d033..40bebabf 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -7,6 +7,9 @@ if archinstall.arguments.get('help'): print("See `man archinstall` for help.") exit(0) +# For support reasons, we'll log the disk layout pre installation to match against post-installation layout +archinstall.log(f"Disk states before installing: {archinstall.disk_layouts()}", level=archinstall.LOG_LEVELS.Debug) + def ask_user_questions(): """ First, we'll ask the user for a bunch of user input. @@ -385,5 +388,8 @@ def perform_installation(mountpoint): except: pass + # For support reasons, we'll log the disk layout post installation (crash or no crash) + archinstall.log(f"Disk states after installing: {archinstall.disk_layouts()}", level=archinstall.LOG_LEVELS.Debug) + ask_user_questions() -perform_installation_steps() +perform_installation_steps()
\ No newline at end of file |