summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimo Fält <simo.falt@qt.io>2022-09-02 14:13:16 +0300
committerHeikki Halmet <heikki.halmet@qt.io>2022-11-18 19:01:19 +0000
commit240b2039179f756d9eb1b9311f97e45e82734f2e (patch)
tree1f0afe71d6d2653076161945410a8b7367f9702e
parenta0c057c160b6d9cb7636aba0dbad76885bca3d28 (diff)
downloadqt5-240b2039179f756d9eb1b9311f97e45e82734f2e.tar.gz
Provisioning: Disable application reopen after reboot
This is required with physical Mac machines. Task-number: QTQAINFRA-5094 Change-Id: Ic1fad436d76d04e1dbce778f57bb69d8124548e7 Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io> (cherry picked from commit c58560db14dab0911ec36bfc3dd8e39789294183)
-rwxr-xr-xcoin/provisioning/common/macos/disable-app-reopen.sh49
-rwxr-xr-xcoin/provisioning/qtci-macos-11.0-arm/01-disable-app-reopen.sh4
-rwxr-xr-xcoin/provisioning/qtci-macos-12.0-arm/01-disable-app-reopen.sh4
-rwxr-xr-xcoin/provisioning/qtci-macos-13-arm/01-disable-app-reopen.sh4
4 files changed, 61 insertions, 0 deletions
diff --git a/coin/provisioning/common/macos/disable-app-reopen.sh b/coin/provisioning/common/macos/disable-app-reopen.sh
new file mode 100755
index 00000000..850c5d43
--- /dev/null
+++ b/coin/provisioning/common/macos/disable-app-reopen.sh
@@ -0,0 +1,49 @@
+#!/usr/bin/env bash
+
+#############################################################################
+##
+## Copyright (C) 2021 The Qt Company Ltd.
+## Contact: https://www.qt.io/licensing/
+##
+## This file is part of the provisioning scripts of the Qt Toolkit.
+##
+## $QT_BEGIN_LICENSE:LGPL$
+## Commercial License Usage
+## Licensees holding valid commercial Qt licenses may use this file in
+## accordance with the commercial license agreement provided with the
+## Software or, alternatively, in accordance with the terms contained in
+## a written agreement between you and The Qt Company. For licensing terms
+## and conditions see https://www.qt.io/terms-conditions. For further
+## information use the contact form at https://www.qt.io/contact-us.
+##
+## GNU Lesser General Public License Usage
+## Alternatively, this file may be used under the terms of the GNU Lesser
+## General Public License version 3 as published by the Free Software
+## Foundation and appearing in the file LICENSE.LGPL3 included in the
+## packaging of this file. Please review the following information to
+## ensure the GNU Lesser General Public License version 3 requirements
+## will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
+##
+## GNU General Public License Usage
+## Alternatively, this file may be used under the terms of the GNU
+## General Public License version 2.0 or (at your option) the GNU General
+## Public license version 3 or any later version approved by the KDE Free
+## Qt Foundation. The licenses are as published by the Free Software
+## Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
+## included in the packaging of this file. Please review the following
+## information to ensure the GNU General Public License requirements will
+## be met: https://www.gnu.org/licenses/gpl-2.0.html and
+## https://www.gnu.org/licenses/gpl-3.0.html.
+##
+## $QT_END_LICENSE$
+##
+#############################################################################
+
+# Prevent applications from re-opening after re-boot.
+# This is needed only with physical mac mini machines used in ci.
+
+
+set -e
+
+sudo chown root ~/Library/Preferences/ByHost/com.apple.loginwindow*
+sudo chmod 000 ~/Library/Preferences/ByHost/com.apple.loginwindow*
diff --git a/coin/provisioning/qtci-macos-11.0-arm/01-disable-app-reopen.sh b/coin/provisioning/qtci-macos-11.0-arm/01-disable-app-reopen.sh
new file mode 100755
index 00000000..cc6c1a4b
--- /dev/null
+++ b/coin/provisioning/qtci-macos-11.0-arm/01-disable-app-reopen.sh
@@ -0,0 +1,4 @@
+#!/usr/bin/env bash
+set -ex
+BASEDIR=$(dirname "$0")
+"$BASEDIR"/../common/macos/disable-app-reopen.sh
diff --git a/coin/provisioning/qtci-macos-12.0-arm/01-disable-app-reopen.sh b/coin/provisioning/qtci-macos-12.0-arm/01-disable-app-reopen.sh
new file mode 100755
index 00000000..cc6c1a4b
--- /dev/null
+++ b/coin/provisioning/qtci-macos-12.0-arm/01-disable-app-reopen.sh
@@ -0,0 +1,4 @@
+#!/usr/bin/env bash
+set -ex
+BASEDIR=$(dirname "$0")
+"$BASEDIR"/../common/macos/disable-app-reopen.sh
diff --git a/coin/provisioning/qtci-macos-13-arm/01-disable-app-reopen.sh b/coin/provisioning/qtci-macos-13-arm/01-disable-app-reopen.sh
new file mode 100755
index 00000000..cc6c1a4b
--- /dev/null
+++ b/coin/provisioning/qtci-macos-13-arm/01-disable-app-reopen.sh
@@ -0,0 +1,4 @@
+#!/usr/bin/env bash
+set -ex
+BASEDIR=$(dirname "$0")
+"$BASEDIR"/../common/macos/disable-app-reopen.sh