Fix 1973 - pipewire (#2030)
Co-authored-by: Daniel Girtler <girtler.daniel@gmail.com>
This commit is contained in:
parent
9bfd8c622a
commit
3ba1a3718e
|
|
@ -166,9 +166,6 @@ def perform_installation(mountpoint: Path):
|
|||
archinstall.arguments.get('profile_config', None)
|
||||
)
|
||||
|
||||
if archinstall.arguments.get('packages', None) and archinstall.arguments.get('packages', None)[0] != '':
|
||||
installation.add_additional_packages(archinstall.arguments.get('packages', None))
|
||||
|
||||
if users := archinstall.arguments.get('!users', None):
|
||||
installation.create_users(users)
|
||||
|
||||
|
|
@ -178,6 +175,9 @@ def perform_installation(mountpoint: Path):
|
|||
else:
|
||||
info("No audio server will be installed")
|
||||
|
||||
if archinstall.arguments.get('packages', None) and archinstall.arguments.get('packages', None)[0] != '':
|
||||
installation.add_additional_packages(archinstall.arguments.get('packages', None))
|
||||
|
||||
if profile_config := archinstall.arguments.get('profile_config', None):
|
||||
profile_handler.install_profile_config(installation, profile_config)
|
||||
|
||||
|
|
|
|||
|
|
@ -230,9 +230,6 @@ def perform_installation(mountpoint: Path, exec_mode: ExecutionMode):
|
|||
archinstall.arguments.get('profile_config', None)
|
||||
)
|
||||
|
||||
if archinstall.arguments.get('packages', None) and archinstall.arguments.get('packages', None)[0] != '':
|
||||
installation.add_additional_packages(archinstall.arguments.get('packages', []))
|
||||
|
||||
if users := archinstall.arguments.get('!users', None):
|
||||
installation.create_users(users)
|
||||
|
||||
|
|
@ -242,6 +239,9 @@ def perform_installation(mountpoint: Path, exec_mode: ExecutionMode):
|
|||
else:
|
||||
info("No audio server will be installed")
|
||||
|
||||
if archinstall.arguments.get('packages', None) and archinstall.arguments.get('packages', None)[0] != '':
|
||||
installation.add_additional_packages(archinstall.arguments.get('packages', []))
|
||||
|
||||
if profile_config := archinstall.arguments.get('profile_config', None):
|
||||
profile_handler.install_profile_config(installation, profile_config)
|
||||
|
||||
|
|
|
|||
|
|
@ -144,9 +144,6 @@ def perform_installation(mountpoint: Path):
|
|||
archinstall.arguments.get('profile_config', None)
|
||||
)
|
||||
|
||||
if archinstall.arguments.get('packages', None) and archinstall.arguments.get('packages', None)[0] != '':
|
||||
installation.add_additional_packages(archinstall.arguments.get('packages', []))
|
||||
|
||||
if users := archinstall.arguments.get('!users', None):
|
||||
installation.create_users(users)
|
||||
|
||||
|
|
@ -156,6 +153,9 @@ def perform_installation(mountpoint: Path):
|
|||
else:
|
||||
info("No audio server will be installed")
|
||||
|
||||
if archinstall.arguments.get('packages', None) and archinstall.arguments.get('packages', None)[0] != '':
|
||||
installation.add_additional_packages(archinstall.arguments.get('packages', []))
|
||||
|
||||
if profile_config := archinstall.arguments.get('profile_config', None):
|
||||
profile.profile_handler.install_profile_config(installation, profile_config)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue