From: Jenkins Date: Mon, 27 Mar 2017 19:59:32 +0000 (+0000) Subject: Merge "Sort ResourceGroup resource list" X-Git-Tag: opnfv-6.0.0~868 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=f1c452fcf672b2543a06576cf55c8eb9e8f2061f;hp=4bd2a9d959a3d745e94224c32e8c9ea5de69f859;p=apex-tripleo-heat-templates.git Merge "Sort ResourceGroup resource list" --- diff --git a/deployed-server/scripts/get-occ-config.sh b/deployed-server/scripts/get-occ-config.sh index 6c196f97..d0cc4dff 100755 --- a/deployed-server/scripts/get-occ-config.sh +++ b/deployed-server/scripts/get-occ-config.sh @@ -63,7 +63,7 @@ for role in $OVERCLOUD_ROLES; do rg_stack=$(openstack stack resource show overcloud $role -c physical_resource_id -f value) done - stacks=$(openstack stack resource list $rg_stack -c physical_resource_id -f value) + stacks=$(openstack stack resource list $rg_stack -c resource_name -c physical_resource_id -f json | jq -r "sort_by(.resource_name) | .[] | .physical_resource_id") i=0