This commit is contained in:
Oleg Sheynin
2026-06-22 17:24:20 +00:00
parent 4960566db8
commit 1267b498ea
3 changed files with 48 additions and 2 deletions
+10 -1
View File
@@ -5,4 +5,13 @@ if [ "$(id -u)" -ne 0 ]; then
exit 1
fi
/usr/sbin/fstrim -av
echo "---------------------------"
echo "Running: ${0} ${*}"
echo
Cmd="/usr/sbin/fstrim -av"
echo "${Cmd}" && ${Cmd}
echo "---------------------------"
echo "DONE: ${0} ${*}"
echo