mirror of
https://git.code.sf.net/p/linux-ima/ima-evm-utils
synced 2025-04-28 22:53:37 +02:00
9 lines
145 B
Bash
Executable File
9 lines
145 B
Bash
Executable File
#!/bin/sh
|
|
|
|
dir=${1:-/}
|
|
|
|
echo "Fixing dir: $dir"
|
|
|
|
find $dir \( -fstype rootfs -o -fstype ext3 -o -fstype ext4 \) -type f -exec openclose '{}' \;
|
|
|