diff options
-rw-r--r-- | build/rpm_specs/openstack-congress.spec | 1 | ||||
-rwxr-xr-x | lib/post-install-functions.sh | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/build/rpm_specs/openstack-congress.spec b/build/rpm_specs/openstack-congress.spec index 5f4d7b35..37023be8 100644 --- a/build/rpm_specs/openstack-congress.spec +++ b/build/rpm_specs/openstack-congress.spec @@ -19,6 +19,7 @@ OpenStack policy manager %prep %setup -q +rm requirements.txt %build diff --git a/lib/post-install-functions.sh b/lib/post-install-functions.sh index eab17407..c951478a 100755 --- a/lib/post-install-functions.sh +++ b/lib/post-install-functions.sh @@ -221,7 +221,7 @@ done # Print out the undercloud IP and dashboard URL source stackrc echo "Undercloud IP: $UNDERCLOUD, please connect by doing 'opnfv-util undercloud'" -echo "Overcloud dashboard available at http://\$(openstack stack output show overcloud PublicVip | sed 's/"//g')/dashboard" +echo "Overcloud dashboard available at http://\$(openstack stack output show overcloud PublicVip -f json | jq -r .output_value)/dashboard" EOI if [[ "$ha_enabled" == 'True' ]]; then |