index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-01-26 00:22:10 +0100 |
---|---|---|
committer | Anton Hvornum <anton@hvornum.se> | 2021-01-26 00:22:10 +0100 |
commit | 3db8e3abbc8133ecb1875465f5cb3a1ea8557e86 (patch) | |
tree | d28134490cc3838a72d4d96d951e35376ed801fc /archinstall/lib | |
parent | 5bc878d58c5a86dde7d141d60289757d411c80ce (diff) |
-rw-r--r-- | archinstall/lib/installer.py | 3 |
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') |