Merge ~nicolasbock/stsstack-bundles:fix_quoting into stsstack-bundles:master

Proposed by Nicolas Bock
Status: Merged
Merged at revision: 31d569e4d0e033350b1853913a255a91c6f4e2cf
Proposed branch: ~nicolasbock/stsstack-bundles:fix_quoting
Merge into: stsstack-bundles:master
Diff against target: 14 lines (+2/-2)
1 file modified
openstack/novarc (+2/-2)
Reviewer Review Type Date Requested Status
Jolly Bundlers Pending
Review via email: mp+394631@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Felipe Reyes (freyes) wrote :

LGTM

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1diff --git a/openstack/novarc b/openstack/novarc
2index aa72641..1ac9415 100644
3--- a/openstack/novarc
4+++ b/openstack/novarc
5@@ -7,8 +7,8 @@ trap cleanup EXIT KILL
6 # cache juju status
7 juju status --format=json > $juju_status_json_cache
8
9-_OS_PARAMS=$(env | awk 'BEGIN {FS="="} /^OS_/ {print $1;}' | paste -sd ' ')
10-for param in $_OS_PARAMS; do
11+_OS_PARAMS=($(env | awk 'BEGIN {FS="="} /^OS_/ {print $1;}'))
12+for param in ${_OS_PARAMS[@]}; do
13 unset $param
14 done
15

Subscribers

People subscribed via source and target branches