Docstrings.
This commit is contained in:
parent
0838e4f5e5
commit
2d032dbf17
|
@ -80,8 +80,9 @@ async def check_load_average():
|
||||||
|
|
||||||
|
|
||||||
# check_disk checks the amount of free space on the /home partition and issues
|
# check_disk checks the amount of free space on the /home partition and issues
|
||||||
# a warning message if it's under 10GB.
|
# a warning message if it's under FREE_DISK_SPACE_THRESHOLD GB.
|
||||||
async def check_disk():
|
async def check_disk():
|
||||||
|
# We check free disk space in 1024 byte units, so it's easy to convert.
|
||||||
df = os.popen("df --block-size=1024").read().strip()
|
df = os.popen("df --block-size=1024").read().strip()
|
||||||
volumes = {}
|
volumes = {}
|
||||||
for line in df.split("\n")[1:]:
|
for line in df.split("\n")[1:]:
|
||||||
|
|
Reference in New Issue