From 7811e01a9049d1c799bb9589807dd2cf3810eda8 Mon Sep 17 00:00:00 2001 From: Dylan Taylor Date: Thu, 20 May 2021 14:59:06 -0400 Subject: Switch back to arch-chroot This reverts commit 27fa5119145ffdc50b7aff400315dc7a82a8cc29. --- examples/guided.py | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/examples/guided.py b/examples/guided.py index a2f2036e..1b7abab1 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -4,10 +4,10 @@ import os import time import archinstall +from archinstall.lib.general import SysCommand from archinstall.lib.hardware import has_uefi from archinstall.lib.networking import check_mirror_reachable from archinstall.lib.profiles import Profile -from archinstall.lib.systemd import Boot if archinstall.arguments.get('help'): print("See `man archinstall` for help.") @@ -379,12 +379,11 @@ def perform_installation(mountpoint): # If the user provided custom commands to be run post-installation, execute them now. if len(archinstall.arguments['custom-commands']): - with Boot(installation) as session: - for index, command in enumerate(archinstall.arguments['custom-commands']): - archinstall.log(f'Executing custom command "{command}" ...', fg='yellow') - with open(f"/mnt/var/tmp/user-command.{index}.sh", "w") as temp_script: - temp_script.write(command) - session.SysCommand(["bash", f"/var/tmp/user-command.{index}.sh"]) + for index, command in enumerate(archinstall.arguments['custom-commands']): + archinstall.log(f'Executing custom command "{command}" ...', fg='yellow') + with open(f"/mnt/var/tmp/user-command.{index}.sh", "w") as temp_script: + temp_script.write(command) + SysCommand(f"arch-chroot /mnt bash /var/tmp/user-command.{index}.sh") 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'): -- cgit v1.2.3-70-g09d2