diff options
author | Daniel Watkins <oddbloke@ubuntu.com> | 2020-04-28 10:34:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-28 10:34:10 -0400 |
commit | f5e1d67bf6faf400749ca192c3394c3356b2654e (patch) | |
tree | d5055a0405205118d9ee03a96d3cfae04cb5e09d /cloudinit/sources/DataSourceOVF.py | |
parent | 429c1ab9b0ee04f5a2287b8579c02907f30e795f (diff) | |
download | vyos-cloud-init-f5e1d67bf6faf400749ca192c3394c3356b2654e.tar.gz vyos-cloud-init-f5e1d67bf6faf400749ca192c3394c3356b2654e.zip |
DataSourceNoCloud/OVF: drop claim to support FTP (#333)
I don't believe this has ever been supported, looking at the git
history, but it certainly isn't at the moment.
LP: #1875470
Diffstat (limited to 'cloudinit/sources/DataSourceOVF.py')
-rw-r--r-- | cloudinit/sources/DataSourceOVF.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/sources/DataSourceOVF.py b/cloudinit/sources/DataSourceOVF.py index 7bba283f..41f999e3 100644 --- a/cloudinit/sources/DataSourceOVF.py +++ b/cloudinit/sources/DataSourceOVF.py @@ -337,7 +337,7 @@ class DataSourceOVFNet(DataSourceOVF): def __init__(self, sys_cfg, distro, paths): DataSourceOVF.__init__(self, sys_cfg, distro, paths) self.seed_dir = os.path.join(paths.seed_dir, 'ovf-net') - self.supported_seed_starts = ("http://", "https://", "ftp://") + self.supported_seed_starts = ("http://", "https://") self.vmware_customization_supported = False |