From 00972f7af0385b1072782dc14205abf6a00734a7 Mon Sep 17 00:00:00 2001 From: Markos Chandras Date: Tue, 3 Oct 2017 13:26:36 +0100 Subject: 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 --- xci/xci-deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xci') 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 "-------------------------------------------------------------------------" } -- cgit 1.2.3-korg