mirror of
https://github.com/truenas/scale-build.git
synced 2026-02-23 19:26:40 +00:00
9 lines
138 B
Python
9 lines
138 B
Python
import psutil
|
|
|
|
|
|
REQUIRED_RAM = 16 # GB
|
|
|
|
|
|
def has_low_ram():
|
|
return psutil.virtual_memory().total < REQUIRED_RAM * 1024 * 1024 * 1024
|