openstack-metadata-fetcher: don't fail if any specific wget's fail

Changed files
+3 -3
nixos
modules
+3 -3
nixos/modules/virtualisation/openstack-metadata-fetcher.nix
···
wget ${wgetExtraOptions} "$@"
}
-
wget_imds -O "$metaDir/ami-manifest-path" http://169.254.169.254/1.0/meta-data/ami-manifest-path
# When no user-data is provided, the OpenStack metadata server doesn't expose the user-data route.
(umask 077 && wget_imds -O "$metaDir/user-data" http://169.254.169.254/1.0/user-data || rm -f "$metaDir/user-data")
-
wget_imds -O "$metaDir/hostname" http://169.254.169.254/1.0/meta-data/hostname
-
wget_imds -O "$metaDir/public-keys-0-openssh-key" http://169.254.169.254/1.0/meta-data/public-keys/0/openssh-key
''
···
wget ${wgetExtraOptions} "$@"
}
+
wget_imds -O "$metaDir/ami-manifest-path" http://169.254.169.254/1.0/meta-data/ami-manifest-path || true
# When no user-data is provided, the OpenStack metadata server doesn't expose the user-data route.
(umask 077 && wget_imds -O "$metaDir/user-data" http://169.254.169.254/1.0/user-data || rm -f "$metaDir/user-data")
+
wget_imds -O "$metaDir/hostname" http://169.254.169.254/1.0/meta-data/hostname || true
+
wget_imds -O "$metaDir/public-keys-0-openssh-key" http://169.254.169.254/1.0/meta-data/public-keys/0/openssh-key || true
''