mirror of
https://github.com/nchevsky/systemrescue-zfs.git
synced 2025-12-06 07:12:01 +01:00
Added ntfs-3g-system-compression (#134)
This commit is contained in:
parent
fa1ed4e89f
commit
23680c2796
|
|
@ -1,10 +1,10 @@
|
|||
#!/bin/bash
|
||||
errcnt=0
|
||||
|
||||
for curfile in /usr/bin/{*btrfs*,*xfs*,featherpad,ms-sys,nwipe,udp*,whdd,zerofree} /opt/firefox*/firefox*
|
||||
for curfile in /usr/bin/{*btrfs*,*xfs*,featherpad,ms-sys,nwipe,udp*,whdd,zerofree} /opt/firefox*/firefox* /usr/lib/ntfs-3g/ntfs-plugin*.so
|
||||
do
|
||||
test -x ${curfile} || continue
|
||||
file --mime ${curfile} | grep -q x-pie-executable || continue
|
||||
file --mime ${curfile} | grep -q -E "x-pie-executable|x-sharedlib" || continue
|
||||
|
||||
if ldd ${curfile} | grep -q -F 'not found'
|
||||
then
|
||||
|
|
|
|||
Loading…
Reference in a new issue