Reverted profiles and application installation order in order to not break DE's vs audioserver setups (#3694)
This commit is contained in:
parent
1ba9d0371a
commit
3607029d59
|
|
@ -123,12 +123,12 @@ def perform_installation(mountpoint: Path) -> None:
|
||||||
if config.packages and config.packages[0] != '':
|
if config.packages and config.packages[0] != '':
|
||||||
installation.add_additional_packages(config.packages)
|
installation.add_additional_packages(config.packages)
|
||||||
|
|
||||||
if profile_config := config.profile_config:
|
|
||||||
profile_handler.install_profile_config(installation, profile_config)
|
|
||||||
|
|
||||||
if app_config := config.app_config:
|
if app_config := config.app_config:
|
||||||
application_handler.install_applications(installation, app_config)
|
application_handler.install_applications(installation, app_config)
|
||||||
|
|
||||||
|
if profile_config := config.profile_config:
|
||||||
|
profile_handler.install_profile_config(installation, profile_config)
|
||||||
|
|
||||||
if timezone := config.timezone:
|
if timezone := config.timezone:
|
||||||
installation.set_timezone(timezone)
|
installation.set_timezone(timezone)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue