diff options
author | Scott Moser <smoser@ubuntu.com> | 2016-03-22 03:33:05 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2016-03-22 03:33:05 -0400 |
commit | 78c99ef3faecde46b3e460dffa1af69654e8bbff (patch) | |
tree | a5fed4327d79c4f35677c6fc9ff602fd00ef114f /cloudinit/distros/debian.py | |
parent | 9e05dd2d21f3db77607f1e4aa53a4657514a4fce (diff) | |
download | vyos-cloud-init-78c99ef3faecde46b3e460dffa1af69654e8bbff.tar.gz vyos-cloud-init-78c99ef3faecde46b3e460dffa1af69654e8bbff.zip |
drop changes other than generate_fallback_config
Diffstat (limited to 'cloudinit/distros/debian.py')
-rw-r--r-- | cloudinit/distros/debian.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/cloudinit/distros/debian.py b/cloudinit/distros/debian.py index de8c4c6c..909d6deb 100644 --- a/cloudinit/distros/debian.py +++ b/cloudinit/distros/debian.py @@ -82,15 +82,6 @@ class Distro(distros.Distro): net.render_network_state(network_state=ns, target="/") return [] - def _write_network_fallback(self): - # old fallback configuration is obsolete, disable it - util.disable_conf_file('/etc/network/interfaces.d/eth0.cfg') - nconf = net.generate_fallback_config() - if nconf is not None: - ns = nconf['config'] - net.render_network_state(network_state=ns, target="/") - return [] - def _bring_up_interfaces(self, device_names): use_all = False for d in device_names: |