mirror of
git://code.qt.io/qt/qt5.git
synced 2026-04-21 04:16:39 +08:00
Python-xml library was dropped out - not supported anymore. Task-number: QTQAINFRA-5068 Change-Id: I6695b4456279143839c38637a5e67a754cafae19 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Ville-Pekka Karhu <ville-pekka.karhu@qt.io>
10 lines
354 B
Bash
Executable File
10 lines
354 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
# Stops the balance job if one is running at the moment. This is a very expensive thing to run and causes major slow down.
|
|
sudo systemctl stop btrfs-balance.service
|
|
|
|
# This will disable btrfs balance job scheduling.
|
|
sudo sed -i 's/BTRFS_BALANCE_PERIOD="weekly"/BTRFS_BALANCE_PERIOD="none"/g' /etc/sysconfig/btrfsmaintenance
|