1
0
mirror of https://github.com/ranl/monitor-utils.git synced 2024-11-05 07:43:40 +01:00

check_deep_fs: get realpath (in case of symlinks)

This commit is contained in:
ranl 2013-12-31 15:09:09 +02:00
parent 2bc071f444
commit c920dfd133

View File

@ -6,7 +6,7 @@ Monitor a mount on the filesystem and all of it sub mounts
from optparse import OptionParser
import subprocess
import os.path
import os
def parse_args():
@ -43,7 +43,7 @@ def get_mount_point(loc):
Get the mount point of the path
'''
mount = os.path.abspath(loc)
mount = os.readlink(os.path.abspath(loc))
while not os.path.ismount(mount):
mount = os.path.dirname(mount)