Forgot another split...

develop
Sven Slootweg 10 years ago
parent 4dbe92396c
commit 0dde712144

@ -106,7 +106,7 @@ while True:
if openvz_burst:
# Sigh, OpenVZ... let's use 'free', since that apparently -does- understand OpenVZ.
lines = subprocess.check_output(["free", "-b"])
lines = subprocess.check_output(["free", "-b"]).splitlines()
_, ram_total, ram_used, ram_free, _, ram_buffers, ram_cached = lines[1].split()
_, _, _, ram_available = lines[2].split()
ram_percent = 1.0 * (ram_total - ram_available) / total * 100

Loading…
Cancel
Save