Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples/guided.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2020-09-01 14:04:47 +0200
committerAnton Hvornum <anton.feeds+github@gmail.com>2020-09-01 14:04:47 +0200
commit323af39ed57191747604b64d1c6ed6a46719c84f (patch)
tree79cd02e39a04ca050cf2e39847511d2e69496e1a /examples/guided.py
parent6744d7ac1bc37bc4db3b1cbf6e0562fa6ae2e0ff (diff)
Added archinstall.Installer().set_mirrors, which allows to modify the mirrors in the finished installed medium.
Diffstat (limited to 'examples/guided.py')
-rw-r--r--examples/guided.py3
1 files changed, 2 insertions, 1 deletions
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()