diff options
author | Scott Moser <smoser@ubuntu.com> | 2018-03-19 14:50:54 -0400 |
---|---|---|
committer | Scott Moser <smoser@brickies.net> | 2018-03-19 14:50:54 -0400 |
commit | e88e35483e373b39b4485f30f7a867f50571027c (patch) | |
tree | 9acb68fc91dc94e2f6fd66d741ff6f75f4abe830 /tools/ds-identify | |
parent | de34dc7c467b318b2d04d065f8d752c7a530e155 (diff) | |
download | vyos-cloud-init-e88e35483e373b39b4485f30f7a867f50571027c.tar.gz vyos-cloud-init-e88e35483e373b39b4485f30f7a867f50571027c.zip |
Add Hetzner Cloud DataSource
The Hetzner Cloud metadata service is an AWS-style service available
over HTTP via the link local address 169.254.169.254.
https://hetzner.com/cloud
https://docs.hetzner.cloud/
Diffstat (limited to 'tools/ds-identify')
-rwxr-xr-x | tools/ds-identify | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/ds-identify b/tools/ds-identify index ec368d58..e3f93c90 100755 --- a/tools/ds-identify +++ b/tools/ds-identify @@ -114,7 +114,7 @@ DI_DSNAME="" # be searched if there is no setting found in config. DI_DSLIST_DEFAULT="MAAS ConfigDrive NoCloud AltCloud Azure Bigstep \ CloudSigma CloudStack DigitalOcean AliYun Ec2 GCE OpenNebula OpenStack \ -OVF SmartOS Scaleway" +OVF SmartOS Scaleway Hetzner" DI_DSLIST="" DI_MODE="" DI_ON_FOUND="" @@ -979,6 +979,11 @@ dscheck_Scaleway() { return ${DS_NOT_FOUND} } +dscheck_Hetzner() { + dmi_sys_vendor_is Hetzner && return ${DS_FOUND} + return ${DS_NOT_FOUND} +} + collect_info() { read_virt read_pid1_product_name |