index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds+github@gmail.com> | 2020-09-01 14:04:47 +0200 |
---|---|---|
committer | Anton Hvornum <anton.feeds+github@gmail.com> | 2020-09-01 14:04:47 +0200 |
commit | 323af39ed57191747604b64d1c6ed6a46719c84f (patch) | |
tree | 79cd02e39a04ca050cf2e39847511d2e69496e1a /examples/guided.py | |
parent | 6744d7ac1bc37bc4db3b1cbf6e0562fa6ae2e0ff (diff) |
-rw-r--r-- | examples/guided.py | 3 |
diff --git a/examples/guided.py b/examples/guided.py index 59260775..f8f3f831 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -1,6 +1,6 @@ import archinstall, getpass, time -def perform_installation(device, boot_partition, language): +def perform_installation(device, boot_partition, language, mirrors): """ Performs the installation steps on a block device. Only requirement is that the block devices are @@ -8,6 +8,7 @@ def perform_installation(device, boot_partition, language): """ with archinstall.Installer(device, boot_partition=boot_partition, hostname=hostname) as installation: if installation.minimal_installation(): + installation.set_mirrors(mirrors) installation.set_keyboard_language(language) installation.add_bootloader() |