mirror of
git://code.qt.io/qt/qt5.git
synced 2026-04-19 11:36:12 +08:00
SLES 15 SP6 and Opensuse 15.6 seem to need direct configuration for git and curl to take CA certificates into use. [CI Platforms] nodejs18: - Needed for QtWebEngine build done in RTA - But nodejs18 doesn't yet have a provider - Therefore using commonly installed nodejs 18.6.0 as it's available Task-number: QTQAINFRA-6746 Task-number: QTQAINFRA-6745 Change-Id: I73fb2a98a648f56b7330e26811e6d4780c51ab80 Reviewed-by: Heikki Halmet <heikki.halmet@qt.io>
9 lines
419 B
Bash
9 lines
419 B
Bash
#!/bin/sh
|
|
# Copyright (C) 2024 The Qt Company Ltd
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
|
|
sudo mkdir -p /etc/wicked/scripts
|
|
echo "ethtool -K \$2 tso off" | sudo tee -a /etc/wicked/scripts/net_tso_off
|
|
sudo chmod 744 /etc/wicked/scripts/net_tso_off
|
|
echo "PRE_UP_SCRIPT='wicked:/etc/wicked/scripts/net_tso_off'" | sudo tee -a /etc/sysconfig/network/ifcfg-eth0
|