mirror of
https://github.com/truenas/scale-build.git
synced 2025-12-20 02:49:28 +00:00
8 lines
149 B
Python
8 lines
149 B
Python
import psutil
|
|
|
|
from .variables import REQUIRED_RAM
|
|
|
|
|
|
def has_low_ram():
|
|
return psutil.virtual_memory().total < REQUIRED_RAM * 1024 * 1024 * 1024
|