Skip to content
Snippets Groups Projects
Commit 6f0cc44f authored by Stéphane Diemer's avatar Stéphane Diemer
Browse files

PEP8

parent a2cc3a71
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,8 @@ BS = 512
def to_gbytes(size_bytes):
return int(round(size_bytes/(1024*1024*1024)))
return int(round(size_bytes / (1024 * 1024 * 1024)))
def read_file(fname):
with open(fname, 'r') as f:
......@@ -38,6 +39,7 @@ paths = [
},
]
def get_swap_gbytes():
d = read_file('/proc/meminfo')
for l in d.split('\n'):
......@@ -46,12 +48,13 @@ def get_swap_gbytes():
swap_kbytes, unit = swap.split(' ')
if unit != 'kB':
print('Warning, unexpected unit %s' % unit)
swap_gbytes = int(round(int(swap_kbytes)/(1024*1024)))
swap_gbytes = int(round(int(swap_kbytes) / (1024 * 1024)))
return swap_gbytes
def get_path(path):
#Filesystem Type 1B-blocks Used Available Use% Mounted on
#/dev/loop2 ext4 52710469632 38253940736 11755397120 77% /
# Filesystem Type 1B-blocks Used Available Use% Mounted on
# /dev/loop2 ext4 52710469632 38253940736 11755397120 77% /
status, output = subprocess.getstatusoutput('df --output="source,fstype,size,used" -B 1 %s | tail -n 1' % path)
if status == 0:
dev, fstype, size, used = output.split()
......@@ -59,6 +62,7 @@ def get_path(path):
dev = fstype = size = used = None
return dev, fstype, to_gbytes(int(size)), to_gbytes(int(used))
def check_allocation(dev):
root_dev = os.path.basename(dev)[:3]
d = read_file('/proc/partitions')
......@@ -86,6 +90,7 @@ def check_allocation(dev):
error = False
warning = False
def check_path(p):
global error
global warning
......@@ -94,10 +99,10 @@ def check_path(p):
mount_point = p.get('mount_point')
if mount_point:
if os.path.isdir(mount_point):
name = mount_point
name = mount_point
dev, fstype, psize, used = get_path(p['mount_point'])
if fstype not in p.get('recommended_types'):
print('Warning, fs type %s not recommended' % (fstype, p['recommended_types']))
print('Warning, fs type %s not recommended (recommended: %s)' % (fstype, p['recommended_types']))
warning = True
if 'nfs' not in dev:
warning = not check_allocation(dev)
......@@ -110,7 +115,7 @@ def check_path(p):
print('%s not found, cannot check' % mount_point)
elif p.get('type') == 'swap':
name = 'swap'
psize = get_swap_gbytes()
psize = get_swap_gbytes()
if psize and psize < p['min_size_gbytes']:
print('%s is smaller than the minimum required size (%s GB < %s GB)' % (name, psize, p['min_size_gbytes']))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment