quick fix to run archinstall and enable systemd services (#3815)

This commit is contained in:
Bruno Rosa 2025-09-19 02:52:30 -03:00 committed by GitHub
parent df3b5d7593
commit 792db9e8b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -667,7 +667,7 @@ class Installer:
info(f'Enabling service {service}')
try:
self.arch_chroot(f'systemctl enable {service}')
SysCommand(f'systemctl --root={self.target} enable {service}')
except SysCallError as err:
raise ServiceException(f'Unable to start service {service}: {err}')