Skip to content

Commit 55c3594

Browse files
committed
deploy_info: fix -C/-c in bm node list
typo, parameter for specifying column has to be lower case -c also make xargs not attempting to run bm node show without uuid Change-Id: I5ae0428df51ca59723eb49829f9ab54d9ef5483e
1 parent fe49264 commit 55c3594

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/tripleo-overcloud/templates/deploy_info.sh.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ openstack server list | awk 'BEGIN {a=0}; /\|/{ if (a>2) print $2} {a=a+1}' | x
3939
{% if (install.version|default(undercloud_version)|openstack_release) >= 11 %}
4040
echo "BM node info"
4141
openstack baremetal node list
42-
openstack baremetal node list -f value -C UUID | xargs -n 1 openstack baremetal node show
42+
openstack baremetal node list -f value -c UUID | xargs -r -n 1 openstack baremetal node show
4343
{% endif %}
4444

4545
echo "Deployments"

0 commit comments

Comments
 (0)