You can also exclude folders where you know you'll unpack temporary files, and will be excluded by the parity.
This is managed by SnapRAID itself and can be achieved via OMV SnapRAID Settings.
Thanks, just few days as use this FS, did not know all details.
BTW, for status and smart I created a short shell script, because wanted to receive details in telegram:
Bash: snapraid_status.sh
snapraid smart | tee /home/snapraid_log/smart.log
snapraid status | tee /home/snapraid_log/status.log
/home/telegramSend.sh "$(date "+%H:%M:%S %d.%m.%y")"$'\n'"Snapraid SMART"$'\n'$'\U2611'$'\n'"$(cat /home/snapraid_log/smart.log)"$'\n'$'\U2705'
/home/telegramSend.sh "$(date "+%H:%M:%S %d.%m.%y")"$'\n'"Snapraid Status"$'\n'$'\U2611'$'\n'"$(cat /home/snapraid_log/status.log)"$'\n'$'\U2705'
Bash: telegramSend.sh
GROUP_ID=""
BOT_TOKEN=""
# this 3 checks (if) are not necessary but should be convenient
if [ "$1" == "-h" ]; then
echo "Usage: `basename $0` \"text message\""
exit 0
fi
if [ -z "$1" ]
then
echo "Add message text as second arguments"
exit 0
fi
if [ "$#" -ne 1 ]; then
echo "You can pass only one argument. For string with spaces put it on quotes"
exit 0
fi
curl -s --data "text=$1" --data "chat_id=$GROUP_ID" 'https://api.telegram.org/bot'$BOT_TOKEN'/sendMessage' > /dev/null
Display More
Maybe will be useful for someone.