Final whitespace changes I think
This commit is contained in:
parent
8d39ff4a76
commit
e111dd9bc1
|
|
@ -1,6 +1,7 @@
|
||||||
import archinstall
|
|
||||||
import time
|
import time
|
||||||
|
|
||||||
|
import archinstall
|
||||||
|
|
||||||
archinstall.storage['UPSTREAM_URL'] = 'https://archlinux.life/profiles'
|
archinstall.storage['UPSTREAM_URL'] = 'https://archlinux.life/profiles'
|
||||||
archinstall.storage['PROFILE_DB'] = 'index.json'
|
archinstall.storage['PROFILE_DB'] = 'index.json'
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
import archinstall
|
import archinstall
|
||||||
|
|
||||||
# import json
|
# import json
|
||||||
# import urllib.request
|
# import urllib.request
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@ is_top_level_profile = False
|
||||||
|
|
||||||
__packages__ = ["plasma-meta", "konsole", "kate", "dolphin", "sddm", "plasma-wayland-session", "egl-wayland"]
|
__packages__ = ["plasma-meta", "konsole", "kate", "dolphin", "sddm", "plasma-wayland-session", "egl-wayland"]
|
||||||
|
|
||||||
|
|
||||||
# TODO: Remove hard dependency of bash (due to .bash_profile)
|
# TODO: Remove hard dependency of bash (due to .bash_profile)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
# 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
|
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
|
import archinstall
|
||||||
|
|
||||||
is_top_level_profile = True
|
is_top_level_profile = True
|
||||||
|
|
||||||
available_servers = ["cockpit", "docker", "httpd", "lighttpd", "mariadb", "nginx", "postgresql", "sshd", "tomcat"]
|
available_servers = ["cockpit", "docker", "httpd", "lighttpd", "mariadb", "nginx", "postgresql", "sshd", "tomcat"]
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,7 @@ def _prep_function(*args, **kwargs):
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
# Ensures that this code only gets executed if executed
|
# Ensures that this code only gets executed if executed
|
||||||
# through importlib.util.spec_from_file_location("xorg", "/somewhere/xorg.py")
|
# through importlib.util.spec_from_file_location("xorg", "/somewhere/xorg.py")
|
||||||
# or through conventional import xorg
|
# or through conventional import xorg
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue