Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions archinstall/lib/applications/application_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,3 @@ def install_applications(self, install_session: Installer, app_config: Applicati
install_session,
app_config.firewall_config,
)


application_handler = ApplicationHandler()
4 changes: 3 additions & 1 deletion archinstall/scripts/guided.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import time
from pathlib import Path

from archinstall.lib.applications.application_handler import application_handler
from archinstall.lib.applications.application_handler import ApplicationHandler
from archinstall.lib.args import arch_config_handler
from archinstall.lib.authentication.authentication_handler import AuthenticationHandler
from archinstall.lib.configuration import ConfigurationOutput
Expand Down Expand Up @@ -55,6 +55,7 @@ def perform_installation(
mountpoint: Path,
mirror_list_handler: MirrorListHandler,
auth_handler: AuthenticationHandler,
application_handler: ApplicationHandler,
) -> None:
"""
Performs the installation steps on a block device.
Expand Down Expand Up @@ -224,6 +225,7 @@ def guided() -> None:
arch_config_handler.args.mountpoint,
mirror_list_handler,
AuthenticationHandler(),
ApplicationHandler(),
)


Expand Down