Skip to content
Snippets Groups Projects

basic-system: fstrim cronjob

Files

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