Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/profiles/minimal.py
blob: 26a3c75c11b14bc5f68fd482307dd5ad58350d59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Used to do a minimal install

import archinstall, os

is_top_level_profile = True

def _prep_function(*args, **kwargs):
	"""
	Magic function called by the importing installer
	before continuing any further. It also avoids executing any
	other code in this stage. So it's a safe way to ask the user
	for more input before any other installer steps start.
	"""
	return True # Do nothing here for now

if __name__ == 'minimal':
	"""
	This "profile" is a meta-profile.
	It is used for a custom minimal installation, without any desktop-specific packages.
	"""
	# Do nothing here for now