Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/__init__.py
blob: 276d122f0e42452d19f960340f674da09252322e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
"""Arch Linux installer - guided, templates etc."""
from argparse import ArgumentParser, FileType

from .lib.disk import *
from .lib.exceptions import *
from .lib.general import *
from .lib.hardware import *
from .lib.installer import __packages__, Installer
from .lib.locale_helpers import *
from .lib.luks import *
from .lib.mirrors import *
from .lib.networking import *
from .lib.output import *
from .lib.packages import *
from .lib.profiles import *
from .lib.services import *
from .lib.storage import *
from .lib.systemd import *
from .lib.user_interaction import *

parser = ArgumentParser()

__version__ = "2.2.0.dev1"


def initialize_arguments():
	config = {}
	parser.add_argument("--config", nargs="?", help="json config file", type=FileType("r", encoding="UTF-8"))
	parser.add_argument("--silent", action="store_true",
						help="Warning!!! No prompts, ignored if config is not passed")
	parser.add_argument("--script", default="guided", nargs="?", help="Script to run for installation", type=str)
	parser.add_argument("--vars",
						metavar="KEY=VALUE",
						nargs='?',
						help="Set a number of key-value pairs "
							 "(do not put spaces before or after the = sign). "
							 "If a value contains spaces, you should define "
							 "it with double quotes: "
							 'foo="this is a sentence". Note that '
							 "values are always treated as strings.")
	args = parser.parse_args()
	if args.config is not None:
		try:
			config = json.load(args.config)
		except Exception as e:
			print(e)
		# Installation can't be silent if config is not passed
		config["silent"] = args.silent
	if args.vars is not None:
		try:
			for var in args.vars.split(' '):
				key, val = var.split("=")
				config[key] = val
		except Exception as e:
			print(e)
	config["script"] = args.script
	return config


arguments = initialize_arguments()


# TODO: Learn the dark arts of argparse... (I summon thee dark spawn of cPython)


def run_as_a_module():
	"""
	Since we're running this as a 'python -m archinstall' module OR
	a nuitka3 compiled version of the project.
	This function and the file __main__ acts as a entry point.
	"""

	# Add another path for finding profiles, so that list_profiles() in Script() can find guided.py, unattended.py etc.
	storage['PROFILE_PATH'].append(os.path.abspath(f'{os.path.dirname(__file__)}/examples'))
	try:
		script = Script(arguments.get('script', None))
	except ProfileNotFound as err:
		print(f"Couldn't find file: {err}")
		sys.exit(1)

	os.chdir(os.path.abspath(os.path.dirname(__file__)))

	# Remove the example directory from the PROFILE_PATH, to avoid guided.py etc shows up in user input questions.
	storage['PROFILE_PATH'].pop()
	script.execute()