blob: 7dfa58c17562c81df735f96247294d385e136e05 (
plain)
1
2
3
4
5
6
|
import archinstall
for profile in archinstall.list_profiles():
# Tailored means it's a match for this machine.
if profile['tailored']:
print('Selecting profile to be installed:', profile)
|