blob: 028a4dd8d9571a1ece947bddbbf371430af46379 [file] [log] [blame]
azvyagintsevf19ddc82018-02-20 18:39:32 +02001#!/bin/bash
2
3set -xe
4
5function _info(){
Ilya Menkovffa478c2019-04-03 14:11:26 +04006 echo -e "=== INFO: NEWTON"
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 "$@"