Added a Info level to the reflector wait in case it's slow.
This commit is contained in:
parent
311426cbc2
commit
342dbb4ebf
|
|
@ -277,7 +277,7 @@ def perform_installation(mountpoint):
|
||||||
# Certain services might be running that affects the system during installation.
|
# 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
|
# 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.
|
# 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')):
|
while 'dead' not in (status := archinstall.service_state('reflector')):
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue