fix reponse var
This commit is contained in:
parent
abd1f3d4b5
commit
3e8078f1cb
@ -8,7 +8,7 @@
|
|||||||
# Functions Used:
|
# Functions Used:
|
||||||
# Global Variables:
|
# Global Variables:
|
||||||
# Initial Functions:
|
# Initial Functions:
|
||||||
# Generated Global Variables: $is_az_vm
|
# Generated Global Variables: $is_az_vm, $meta_response
|
||||||
# Fat linpeas: 0
|
# Fat linpeas: 0
|
||||||
# Small linpeas: 1
|
# Small linpeas: 1
|
||||||
|
|
||||||
@ -27,15 +27,15 @@ check_az_vm(){
|
|||||||
else
|
else
|
||||||
# 3. Try querying the Azure Metadata Service for more wide support (e.g. Azure Container Registry tasks need this)
|
# 3. Try querying the Azure Metadata Service for more wide support (e.g. Azure Container Registry tasks need this)
|
||||||
if command -v curl &> /dev/null; then
|
if command -v curl &> /dev/null; then
|
||||||
response=$(curl -s --max-time 2 \
|
meta_response=$(curl -s --max-time 2 \
|
||||||
"http://169.254.169.254/metadata/identity/oauth2/token")
|
"http://169.254.169.254/metadata/identity/oauth2/token")
|
||||||
if echo "$response" | grep -q "Missing"; then
|
if echo "$meta_response" | grep -q "Missing"; then
|
||||||
is_az_vm="Yes"
|
is_az_vm="Yes"
|
||||||
fi
|
fi
|
||||||
elif command -v wget &> /dev/null; then
|
elif command -v wget &> /dev/null; then
|
||||||
response=$(wget -qO- --timeout=2 \
|
meta_response=$(wget -qO- --timeout=2 \
|
||||||
"http://169.254.169.254/metadata/identity/oauth2/token")
|
"http://169.254.169.254/metadata/identity/oauth2/token")
|
||||||
if echo "$response" | grep -q "Missing"; then
|
if echo "$meta_response" | grep -q "Missing"; then
|
||||||
is_az_vm="Yes"
|
is_az_vm="Yes"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user