Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2019-11-17 23:06:09 +0000
committerAnton Hvornum <anton.feeds+github@gmail.com>2019-11-17 23:06:09 +0000
commit9cd0a4b73f4d284e1991360f316a1053a234f232 (patch)
tree46d4bda134a566e1370fb209dc5b0a717d57286c
parent5f256b9e4afc7c7a604c8c240033ab8eba2b6467 (diff)
Fixed some stuff
-rw-r--r--archinstall.py7
-rw-r--r--test_archinstall.py1
2 files changed, 6 insertions, 2 deletions
diff --git a/archinstall.py b/archinstall.py
index 5c261662..e43109b4 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -216,7 +216,7 @@ class sys_command():#Thread):
if not 'emulate' in kwargs: kwargs['emulate'] = SAFETY_LOCK
#Thread.__init__(self)
if kwargs['emulate']:
- print('Starting command in emulation mode.')
+ print(f"Starting command '{cmd}' in emulation mode.")
self.cmd = shlex.split(cmd)
self.args = args
self.kwargs = kwargs
@@ -494,7 +494,10 @@ def get_disk_size(drive):
return ''.join(human_readable_size(fh.read().decode('UTF-8').strip()))
def disk_info(drive, *positionals, **kwargs):
- info = json.loads(b''.join(sys_command(f'lsblk -J -o "NAME,SIZE,FSTYPE,LABEL" {drive}', *positionals, **kwargs)).decode('UTF_8'))['blockdevices'][0]
+ lkwargs = {**kwargs}
+ lkwargs['emulate'] = False # This is a emulate-safe function. Does not alter filesystem.
+
+ info = json.loads(b''.join(sys_command(f'lsblk -J -o "NAME,SIZE,FSTYPE,LABEL" {drive}', *positionals, **lkwargs)).decode('UTF_8'))['blockdevices'][0]
fileformats = []
labels = []
for child in info['children']:
diff --git a/test_archinstall.py b/test_archinstall.py
index 3b5ddcae..30bc76e7 100644
--- a/test_archinstall.py
+++ b/test_archinstall.py
@@ -9,5 +9,6 @@ archinstall.setup_args_defaults(archinstall.args, interactive=False)
instructions = archinstall.load_automatic_instructions(emulate=False)
profile_instructions = archinstall.get_instructions('workstation', emulate=False)
profile_instructions = archinstall.merge_in_includes(profile_instructions, emulate=False)
+archinstall.args['password'] = 'test'
print(json.dumps(archinstall.args, indent=4)) \ No newline at end of file