Fix: bashate E003 warnings
[releng/global-jjb.git] / shell / capture-instance-metadata.sh
index 23a9f2b..0998dd1 100644 (file)
@@ -17,8 +17,14 @@ if [ -n "${NOMAD_DC}" ]; then
     exit 0
 fi
 
-# detect if we're in AWS
-if grep -qi amazon /sys/devices/virtual/dmi/id/bios_vendor ; then
+if [[ ! -f /run/cloud-init/result.json ]]; then
+    echo "INFO: Running in unsupported cloud, no metadata"
+    exit 0
+fi
+
+# AWS not supported, exit
+cloudtype="$(jq -r .v1.datasource /run/cloud-init/result.json)"
+if [[ $cloudtype == "DataSourceEc2Local" ]]; then
     echo "INFO: Running in AWS, not capturing instance metadata"
     exit 0
 fi