mirror of
git://code.qt.io/qt/qt5.git
synced 2026-01-04 22:17:45 +08:00
RHEL 8.8 will be added as parallel with RHEL 8.6 until packaging
site gives green light to remove the older Red Hat version.
Removing also some obsolete package installations.
Task-number: QTQAINFRA-5854
Change-Id: Ie77500a805a89db9019b5347539e662bc016af59
(cherry picked from commit 5cca2b7ba4)
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: Tony Sarajärvi <tony.sarajarvi@qt.io>
19 lines
600 B
Bash
19 lines
600 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (C) 2023 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
|
|
|
|
set -e
|
|
|
|
curl --retry 5 --retry-delay 10 --retry-max-time 60 http://ci-files01-hki.intra.qt.io/input/semisecure/redhat_ak.sh -o "/tmp/redhat_ak.sh" &>/dev/null
|
|
sudo chmod 755 /tmp/redhat_ak.sh
|
|
/tmp/redhat_ak.sh
|
|
|
|
# refresh local certificates
|
|
sudo subscription-manager refresh
|
|
|
|
# Attach available subscriptions to system. This is needed when subscriptions are renewed.
|
|
sudo subscription-manager attach --auto
|
|
|
|
sudo rm -f /tmp/redhat_ak.sh
|