]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - config/fstrim/trim
freeradius: rootfile update
[people/pmueller/ipfire-2.x.git] / config / fstrim / trim
CommitLineData
0976ce2f
AF
1#!/bin/bash
2#
3# Script to trim free space on solid state drives.
4#
5for i in / /boot /var; do
6 fstrim $i 2>&1 >/dev/null
7done
8