-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathset_pbench_variables
executable file
·118 lines (108 loc) · 2.2 KB
/
set_pbench_variables
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#!/bin/bash
#
# Copyright (C) 2022 David Valin dvalin@redhat.com
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
host_config=""
pbench_user=""
run_label=""
test=""
sys_type=""
usage()
{
echo "Usage: $1"
echo " --host_config: host configuration"
echo " --pbench_user: user runniing pbench"
echo " --run_label: label of the run"
echo " --sys_type: local or cloud vendor"
echo " --test: name of test running."
echo " --usage: this usage message"
exit 1
}
#
# Define options
#
ARGUMENT_LIST=(
"host_config"
"pbench_user"
"run_label"
"sys_type"
"test"
)
NO_ARGUMENTS=(
"usage"
)
# read arguments
opts=$(getopt \
--longoptions "$(printf "%s:," "${ARGUMENT_LIST[@]}")" \
--longoptions "$(printf "%s," "${NO_ARGUMENTS[@]}")" \
--name "$(basename "$0")" \
--options "h" \
-- "$@"
)
if [ $? -ne 0 ]; then
exit
fi
eval set --$opts
while [[ $# -gt 0 ]]; do
case "$1" in
--host_config)
host_config=$2
shift 2
;;
--pbench_user)
pbench_user=$2
shift 2
;;
--run_label)
run_label=$2
shift 2
;;
--sys_type)
sys_type=$2
shift 2
;;
--test)
test=$2
shift 2
;;
--usage)
usage $0
;;
-h)
usage $0
;;
--)
break;
;;
*)
echo option not found $1
usage $0
;;
esac
done
temp=`echo "${host_config}" | cut -d':' -f 1`
if [[ $sys_type != "local" ]]; then
if [[ $host_config != "" ]]; then
temp=`echo $temp | sed "s/\"//g"`
fi
fi
#
# Really we are exporting the label.
#
hostname=${pbench_user}_${run_label}
results_prefix="${temp}"
echo ${hostname}:${results_prefix}