diff options
author | zdc <zdc@users.noreply.github.com> | 2020-09-16 21:39:54 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-16 21:39:54 +0300 |
commit | 8d9157e98f7023d6da9d90dad675f8f17f65b453 (patch) | |
tree | 0ee3e5065b4a3aafda6e662d12a1ab2f60935aad /cloudinit/sources/DataSourceOVF.py | |
parent | 76adf82b8a4dbcf636151d292175b7d1ac182fcf (diff) | |
parent | 12a4c9c500695e160b4543f6c93a87c333f0a8ae (diff) | |
download | vyos-cloud-init-8d9157e98f7023d6da9d90dad675f8f17f65b453.tar.gz vyos-cloud-init-8d9157e98f7023d6da9d90dad675f8f17f65b453.zip |
Merge pull request #19 from zdc/T2117-equuleus
cc_vyos: T2117: OVF datasource cleanup
Diffstat (limited to 'cloudinit/sources/DataSourceOVF.py')
-rw-r--r-- | cloudinit/sources/DataSourceOVF.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cloudinit/sources/DataSourceOVF.py b/cloudinit/sources/DataSourceOVF.py index 6a9a331d..e53d2eb1 100644 --- a/cloudinit/sources/DataSourceOVF.py +++ b/cloudinit/sources/DataSourceOVF.py @@ -436,8 +436,7 @@ def read_ovf_environment(contents): cfg = {} ud = None cfg_props = ['password'] - md_props = ['seedfrom', 'local-hostname', 'public-keys', 'instance-id', - 'ip0', 'netmask0', 'gateway', 'DNS', 'NTP', 'APIKEY' ,'APIPORT', 'APIDEBUG'] + md_props = ['seedfrom', 'local-hostname', 'public-keys', 'instance-id'] for (prop, val) in props.items(): if prop == 'hostname': prop = "local-hostname" |