From 592c1737671e4de8f9601f94020d7fb9c162e6cb Mon Sep 17 00:00:00 2001 From: "Dylan M. Taylor" Date: Wed, 19 May 2021 19:10:12 -0400 Subject: Iterate over custom-command array --- examples/guided.py | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'examples') diff --git a/examples/guided.py b/examples/guided.py index f0d0db7a..7ded5c53 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -4,6 +4,7 @@ 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 @@ -380,6 +381,13 @@ def perform_installation(mountpoint): if not imported._post_install(): archinstall.log(' * Profile\'s post configuration requirements was not fulfilled.', fg='red') exit(1) + + # If the user provided custom commands to be run post-installation, execute them now. + if len(archinstall.arguments['custom-commands']): + for command in archinstall.arguments['custom-commands']: + archinstall.log(f'Executing custom command "{command}" ...', fg='yellow') + SysCommand(f"arch-chroot /mnt {command}") + 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-54-g00ecf