From: Markos Chandras Date: Tue, 3 Oct 2017 12:26:36 +0000 (+0100) Subject: xci: xci-deploy.sh: Extend regexp when collecting env variables X-Git-Tag: 6.0.0~276 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=00972f7af0385b1072782dc14205abf6a00734a7;p=releng-xci.git 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 --- 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 "-------------------------------------------------------------------------" }