0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

fix(juju): add public-address fallback to jaddr (#12046)

This commit is contained in:
Babak K. Shandiz 2023-11-20 14:52:32 +02:00 committed by GitHub
parent e0213342d1
commit 22f9a8d3b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -98,7 +98,7 @@ jaddr() {
elif [[ $# -eq 2 ]]; then elif [[ $# -eq 2 ]]; then
# Get unit address # Get unit address
juju status "$1/$2" --format=json \ juju status "$1/$2" --format=json \
| jq -r ".applications.\"$1\".units.\"$1/$2\".address" | jq -r ".applications.\"$1\".units.\"$1/$2\" | .address // .\"public-address\""
else else
echo "Invalid number of arguments." echo "Invalid number of arguments."
echo "Usage: jaddr <app-name> [<unit-number>]" echo "Usage: jaddr <app-name> [<unit-number>]"