Lines Matching +full:non +full:- +full:compliant
6 # /bin -> usr/bin
7 # /lib -> usr/lib
8 # /sbin -> usr/sbin
13 # Output: the list of non-compliant paths (empty if compliant).
17 # a symlink, we want to get the inode of the pointed-to directory, so we
19 # can be anyway (/bin -> /usr/bin or /usr/bin -> /bin), we do that for
22 lib_inode=$(stat -c '%i' "${1}/lib/." 2>/dev/null)
23 bin_inode=$(stat -c '%i' "${1}/bin/." 2>/dev/null)
24 sbin_inode=$(stat -c '%i' "${1}/sbin/." 2>/dev/null)
25 usr_lib_inode=$(stat -c '%i' "${1}/usr/lib/." 2>/dev/null)
26 usr_bin_inode=$(stat -c '%i' "${1}/usr/bin/." 2>/dev/null)
27 usr_sbin_inode=$(stat -c '%i' "${1}/usr/sbin/." 2>/dev/null)
30 test -z "$lib_inode" || \
33 test -z "$bin_inode" || \
36 test -z "$sbin_inode" || \