Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-01-26 00:22:10 +0100
committerAnton Hvornum <anton@hvornum.se>2021-01-26 00:22:10 +0100
commit3db8e3abbc8133ecb1875465f5cb3a1ea8557e86 (patch)
treed28134490cc3838a72d4d96d951e35376ed801fc /archinstall
parent5bc878d58c5a86dde7d141d60289757d411c80ce (diff)
Error in copy paste of function name.
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/installer.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index d01cb882..c9d7e9cc 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -190,7 +190,6 @@ class Installer():
if not os.path.isdir(f"{self.mountpoint}/var/lib/iwd"):
os.makedirs(f"{self.mountpoint}/var/lib/iwd")
-
if enable_services:
# If we haven't installed the base yet (function called pre-maturely)
if self.helper_flags.get('base', False) is False:
@@ -207,7 +206,7 @@ class Installer():
# Otherwise, we can go ahead and add the required package
# and enable it's service:
else:
- self.pacstrap(self.base_packages)
+ self.pacstrap('iwd')
self.enable_service('iwd')
self.enable_service('systemd-networkd')
self.enable_service('systemd-resolved')