aboutsummaryrefslogtreecommitdiffstats
path: root/coin/provisioning/common/linux/version.sh
blob: 4e0443fef952856daa0dbed0eb14e161d9e78215 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env bash
# Copyright (C) 2016 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

# This script will print all installed software to provision log.
# Script needs to be named so that it will be ran at last during provisioning

# Print all build machines versions to provision log
echo "*********************************************"
echo "***** SW VERSIONS *****"
cat ~/versions.txt
echo "*********************************************"
echo "*************** mount ***********************"
mount
echo "*********************************************"
echo "*************** df **************************"
df -hT
echo "*********************************************"