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.feeds@gmail.com>2021-04-13 10:56:22 +0200
committerAnton Hvornum <anton.feeds@gmail.com>2021-04-13 10:56:22 +0200
commit342dbb4ebf5f95306a68c8a2e75f7abe6111f358 (patch)
treef3a5bbb5c8608c55103e3d99527dfc8cc0eadf07 /examples
parent311426cbc22d72fd3d858ef1580b5d6d1f6b5665 (diff)
Added a Info level to the reflector wait in case it's slow.
Diffstat (limited to 'examples')
-rw-r--r--examples/guided.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/guided.py b/examples/guided.py
index b4a3a7f7..d274545c 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -277,7 +277,7 @@ def perform_installation(mountpoint):
# Certain services might be running that affects the system during installation.
# Currently, only one such service is "reflector.service" which updates /etc/pacman.d/mirrorlist
# We need to wait for it before we continue since we opted in to use a custom mirror/region.
- installation.log(f'Waiting for automatic mirror selection has completed before using custom mirrors.')
+ installation.log(f'Waiting for automatic mirror selection (feflector) to complete.', level=archinstall.LOG_LEVELS.Info)
while 'dead' not in (status := archinstall.service_state('reflector')):
time.sleep(1)