-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Open
Description
spug/spug_api/apps/host/utils.py
Lines 223 to 231 in 0e7b5ec
| code, out = ssh.exec_command_raw('lsblk -dbn -o SIZE -e 11 2> /dev/null') | |
| if code == 0: | |
| disks = [] | |
| for item in out.strip().splitlines(): | |
| item = item.strip() | |
| size = math.ceil(int(item) / 1024 / 1024 / 1024) | |
| if size > 10: | |
| disks.append(size) | |
| response['disk'] = disks[:10] |
有些vps的硬盘比较小,10GB比较常见,会被这里的代码过滤掉,导致扩展信息里获取不到磁盘信息
Metadata
Metadata
Assignees
Labels
No labels