index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds+github@gmail.com> | 2020-08-20 17:08:13 +0000 |
---|---|---|
committer | Anton Hvornum <anton.feeds+github@gmail.com> | 2020-08-20 17:08:13 +0000 |
commit | 056b800c8eb42c4112dce54bd1a7336d52ead2ab (patch) | |
tree | f26df1541224fd11a1d485ff6c463979d7c01983 /archinstall/lib/profiles.py | |
parent | aaad480ab845ad644fdb8455d2bbf1763c605d24 (diff) |
-rw-r--r-- | archinstall/lib/profiles.py | 16 |
diff --git a/archinstall/lib/profiles.py b/archinstall/lib/profiles.py index 47d6eaf8..b63a26c4 100644 --- a/archinstall/lib/profiles.py +++ b/archinstall/lib/profiles.py @@ -1,8 +1,9 @@ -import os, urllib.request, urllib.parse, ssl, json +import os, urllib.request, urllib.parse, ssl, json, re import importlib.util, sys from collections import OrderedDict from .general import multisplit, sys_command, log from .exceptions import * +from .networking import * UPSTREAM_URL = 'https://raw.githubusercontent.com/Torxed/archinstall/master/profiles' @@ -14,19 +15,28 @@ def grab_url_data(path): response = urllib.request.urlopen(safe_path, context=ssl_context) return response.read() -def list_profiles(base='./profiles/'): +def list_profiles(base='./profiles/', filter_irrelevant_macs=True): # TODO: Grab from github page as well, not just local static files + if filter_irrelevant_macs: + local_macs = list_interfaces() + cache = {} for root, folders, files in os.walk(base): for file in files: + tailored = False if os.path.splitext(file)[1] == '.py': + if len(mac := re.findall('(([a-zA-z0-9]{2}[-:]){5}([a-zA-z0-9]{2}))', file)): + if filter_irrelevant_macs and mac[0][0] not in local_macs:: + continue + tailored = True + description = '' with open(os.path.join(root, file), 'r') as fh: first_line = fh.readline() if first_line[0] == '#': description = first_line[1:].strip() - cache[file] = {'path' : os.path.join(root, file), 'description' : description} + cache[file] = {'path' : os.path.join(root, file), 'description' : description, 'tailored' : tailored} break return cache |