mirror of
git://code.qt.io/qt/qt5.git
synced 2026-02-01 19:36:04 +08:00
Task-number: QTQAINFRA-5996 Change-Id: I05ef6d33d74448ee830d137b137c6ee73f6e0518 Reviewed-by: Ville-Pekka Karhu <ville-pekka.karhu@qt.io>
34 lines
814 B
Bash
Executable File
34 lines
814 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (C) 2017 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
|
|
|
|
# Allow retry in case mdutil fails with first tries
|
|
set +e
|
|
|
|
disableSpotlight() {
|
|
# Disable spotlight and and stop indexing
|
|
sudo mdutil -a -i off || return 1
|
|
sudo mdutil -a -i off / || return 1
|
|
# Disable spotlight indexing /Volumes
|
|
sudo mdutil -i off /Volumes || return 1
|
|
# Erase spotlight index
|
|
sudo mdutil -E / || return 1
|
|
}
|
|
|
|
# Disabling spotlight tends to be flaky, add some retry
|
|
for i in $(seq 1 5)
|
|
do
|
|
disableSpotlight
|
|
res=$?
|
|
if [[ $res -eq 0 ]]
|
|
then
|
|
echo "Spotlight disabled"
|
|
break
|
|
else
|
|
echo "Failed to disable spotlight, $i retry..."
|
|
sleep 2
|
|
fi
|
|
done
|
|
|
|
exit $res
|