index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Dylan Taylor <dylan@dylanmtaylor.com> | 2021-05-15 13:59:37 -0400 |
---|---|---|
committer | Dylan Taylor <dylan@dylanmtaylor.com> | 2021-05-15 13:59:37 -0400 |
commit | 3b20adb7d216cbe72bf1770e219207216bee96ee (patch) | |
tree | 8e90b3795bfae1e0e3e3bfaebf7f341c9d9e6362 /archinstall/lib/hardware.py | |
parent | a75dd6ea3a4f961ddfeaff6b4378bd4aac5c3b39 (diff) |
-rw-r--r-- | archinstall/lib/hardware.py | 2 |
diff --git a/archinstall/lib/hardware.py b/archinstall/lib/hardware.py index 9eaff22e..3203daee 100644 --- a/archinstall/lib/hardware.py +++ b/archinstall/lib/hardware.py @@ -108,7 +108,7 @@ def cpuVendor() -> Optional[str]: def isVM() -> bool: try: - subprocess.check_call(["systemd-detect-virt"]) # systemd-detect-virt issues a non-zero exit code if it is not on a virtual machine + subprocess.check_call(["systemd-detect-virt"]) # systemd-detect-virt issues a non-zero exit code if it is not on a virtual machine return True except: return False |