Skip to content
Snippets Groups Projects

basic-system: fstrim cronjob

Merged Thomas Schneider requested to merge th/fstrim-cron into master

Files

+ 5
0
#!/bin/sh
set -e
if command -v fstrim >/dev/null; then
fstrim -a
fi
Loading