diff options
author | Markos Chandras <mchandras@suse.de> | 2017-10-03 13:26:36 +0100 |
---|---|---|
committer | Markos Chandras <mchandras@suse.de> | 2017-10-03 13:26:36 +0100 |
commit | 00972f7af0385b1072782dc14205abf6a00734a7 (patch) | |
tree | 6a79d28010ffe60268c8094d1dee57a21c9e2a46 /xci | |
parent | 570d4a19670360b7428f7760b096b48f829b6d61 (diff) |
xci: xci-deploy.sh: Extend regexp when collecting env variables
Not all variables start with XCI, OPNFV or OPENSTACK so extend the
regexp to look for more variables.
Change-Id: If3693d65eec697f6c81c608da3be5799333c28d7
Signed-off-by: Markos Chandras <mchandras@suse.de>
Diffstat (limited to 'xci')
-rwxr-xr-x | xci/xci-deploy.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xci/xci-deploy.sh b/xci/xci-deploy.sh index 52dce4b0..c798135f 100755 --- a/xci/xci-deploy.sh +++ b/xci/xci-deploy.sh @@ -22,7 +22,7 @@ submit_bug_report() { echo "openstack/openstack-ansible version: $OPENSTACK_OSA_VERSION" echo "xci flavor: $XCI_FLAVOR" echo "Environment variables:" - env | grep --color=never '^\(OPNFV\|XCI\|OPENSTACK\)_' + env | grep --color=never '\(OPNFV\|XCI\|OPENSTACK\)' echo "-------------------------------------------------------------------------" } |