]> git.ipfire.org Git - ipfire-2.x.git/blame_incremental - config/fstrim/trim
kernel: Enable debugging for Atheros drivers
[ipfire-2.x.git] / config / fstrim / trim
... / ...
CommitLineData
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