mirror of
git://code.qt.io/qt/qt5.git
synced 2026-01-08 07:56:54 +08:00
fstrim scans the filesystem and sends 'UNMAP' commands for each unused block it finds. Let's disable it so it won't cause unexpected situations. Task-number: QTQAINFRA-3919 Change-Id: I20c97441fd47728a3063ae50f87fe6347186bdbd Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io> (cherry picked from commit031bc19ae6) Reviewed-by: Toni Saario <toni.saario@qt.io> (cherry picked from commit11cd0f1d75)
8 lines
188 B
Bash
8 lines
188 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
# This will disable fstrim. The fstrim.timer is scheduled to activate the fstrim.service
|
|
sudo systemctl stop fstrim.timer
|
|
sudo systemctl disable fstrim.timer
|