Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2022-05-29 09:44:31 +0200
committerAnton Hvornum <anton@hvornum.se>2022-05-29 09:44:31 +0200
commit0601956b5bdf27ec497a94e7313ea22cf21ecbe0 (patch)
tree81ea144d2a67ceff383f4b9f5d8998f29e01863a /examples
parent7daf9b32d0c32d9fa1ba5aa9750376ad47c6d7e6 (diff)
Moved genfstab() to guided.py instead of __exit__ of Installer(). This is a breaking change.
Diffstat (limited to 'examples')
-rw-r--r--examples/guided.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/guided.py b/examples/guided.py
index 19b0d638..635baf6a 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -253,6 +253,8 @@ def perform_installation(mountpoint):
if archinstall.arguments.get('custom-commands', None):
archinstall.run_custom_user_commands(archinstall.arguments['custom-commands'], installation)
+ installation.genfstab()
+
installation.log("For post-installation tips, see https://wiki.archlinux.org/index.php/Installation_guide#Post-installation", fg="yellow")
if not archinstall.arguments.get('silent'):
prompt = str(_('Would you like to chroot into the newly created installation and perform post-installation configuration?'))