Skip to content
Snippets Groups Projects

basic-system: fstrim cronjob

Merged Thomas Schneider requested to merge th/fstrim-cron into master
2 files
+ 15
0
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 5
0
 
#!/bin/sh
 
set -e
 
if command -v fstrim >/dev/null; then
 
fstrim -a
 
fi
Loading