diff options
| author | Markus Schade <markus.schade@hetzner.com> | 2019-07-03 17:04:46 +0000 |
|---|---|---|
| committer | Server Team CI Bot <josh.powers+server-team-bot@canonical.com> | 2019-07-03 17:04:46 +0000 |
| commit | 5e4792cd11a4754384bd70e4dc94413976017ae8 (patch) | |
| tree | cbcf1069ff52bfd0fd25f44c89af669b7491b4b6 | |
| parent | b993b0a308b2e8182beef965ff57e9a7974f5e17 (diff) | |
| download | vyos-cloud-init-5e4792cd11a4754384bd70e4dc94413976017ae8.tar.gz vyos-cloud-init-5e4792cd11a4754384bd70e4dc94413976017ae8.zip | |
Add missing dsname for Hetzner Cloud datasource
| -rw-r--r-- | cloudinit/sources/DataSourceHetzner.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cloudinit/sources/DataSourceHetzner.py b/cloudinit/sources/DataSourceHetzner.py index 5c75b65b..50298330 100644 --- a/cloudinit/sources/DataSourceHetzner.py +++ b/cloudinit/sources/DataSourceHetzner.py @@ -28,6 +28,9 @@ MD_WAIT_RETRY = 2 class DataSourceHetzner(sources.DataSource): + + dsname = 'Hetzner' + def __init__(self, sys_cfg, distro, paths): sources.DataSource.__init__(self, sys_cfg, distro, paths) self.distro = distro |
