blob: 8b44a6a131f1f081aff3c510db14d4272e9b7773 [file] [log] [blame]
azvyagintsevf19ddc82018-02-20 18:39:32 +02001#!/bin/bash
2
3set -xe
4
5function _info(){
Ilya Menkove66ecc12019-04-03 14:13:49 +04006 echo -e "=== INFO: OCATA"
sandriichenko3a043ca2018-06-15 11:08:36 +03007 cat /etc/build_timestamp || true
azvyagintsevf19ddc82018-02-20 18:39:32 +02008 set +x
9 echo -e "=== INFO: tempest version:"
10 tempest --version
11 echo -e "=== INFO: installed plugins:"
12 tempest list-plugins
13 echo -e "=== INFO: tempest pip's:"
14 pip freeze |grep -i tempest | sort
15 echo -e "============================"
16 set -x
17}
18
19_info
20exec "$@"