[PATCH 1/3] common: Filter out lost+found directory from _ls_l() output
Lukas Czerner
lczerner at redhat.com
Tue Dec 17 08:02:25 CST 2013
Signed-off-by: Lukas Czerner <lczerner at redhat.com>
---
common/rc | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/common/rc b/common/rc
index 5f61d57..7a168e9 100644
--- a/common/rc
+++ b/common/rc
@@ -74,10 +74,11 @@ _md5_checksum()
# ls -l w/ selinux sometimes puts a dot at the end:
# -rwxrw-r--. id1 id2 file1
+# Also filter out lost+found directory on extN file system if present
_ls_l()
{
- ls -l $* | sed "s/\(^[-rwxdlbcpsStT]*\)\. /\1 /"
+ ls -l $* | sed "s/\(^[-rwxdlbcpsStT]*\)\. /\1 /" | grep -v 'lost+found'
}
_mount_opts()
--
1.8.3.1
More information about the xfs
mailing list