]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - config/fstrim/trim
wireless-client: add wireless cfg to iso, backup and core71.
[people/teissler/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