A couple more small fixes
This commit is contained in:
parent
acb754ff2e
commit
d93ef24e8e
|
|
@ -1,6 +1,6 @@
|
||||||
# A desktop environment using "Enlightenment".
|
# A desktop environment using "Enlightenment".
|
||||||
|
|
||||||
import archinstall, os
|
import archinstall
|
||||||
|
|
||||||
is_top_level_profile = False
|
is_top_level_profile = False
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
# Used to select various server application profiles on top of a minimal installation.
|
# Used to select various server application profiles on top of a minimal installation.
|
||||||
|
|
||||||
import archinstall, logging
|
import archinstall
|
||||||
|
import logging
|
||||||
|
|
||||||
is_top_level_profile = True
|
is_top_level_profile = True
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -36,4 +36,4 @@ if __name__ == 'xorg':
|
||||||
else:
|
else:
|
||||||
archinstall.storage['installation_session'].add_additional_packages(f"xorg-server xorg-xinit {' '.join(_gfx_driver_packages)}")
|
archinstall.storage['installation_session'].add_additional_packages(f"xorg-server xorg-xinit {' '.join(_gfx_driver_packages)}")
|
||||||
except:
|
except:
|
||||||
archinstall.storage['installation_session'].add_additional_packages(f"xorg-server xorg-xinit") # Prep didn't run, so there's no driver to install
|
archinstall.storage['installation_session'].add_additional_packages("xorg-server xorg-xinit") # Prep didn't run, so there's no driver to install
|
||||||
Loading…
Reference in New Issue