Error in copy paste of function name.

This commit is contained in:
Anton Hvornum 2021-01-26 00:22:10 +01:00
parent 5bc878d58c
commit 3db8e3abbc
No known key found for this signature in database
GPG Key ID: F1234C5BA67C59DF
1 changed files with 1 additions and 2 deletions

View File

@ -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')