diff options
author | Scott Moser <smoser@ubuntu.com> | 2016-06-15 23:56:59 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2016-06-15 23:56:59 -0400 |
commit | 776b0cfe847f531d8d5a235f52673c3da1f06064 (patch) | |
tree | 03e7b18a35a0eb33973448b01f4b51bdb2477b80 /cloudinit/net/__init__.py | |
parent | d598ceeb838b4ccaf667ded84bb02bf096ab7b12 (diff) | |
parent | 922562bccbc6b6c7f3309ecd36f1835b2ad817da (diff) | |
download | vyos-cloud-init-776b0cfe847f531d8d5a235f52673c3da1f06064.tar.gz vyos-cloud-init-776b0cfe847f531d8d5a235f52673c3da1f06064.zip |
support network rendering to sysconfig (for centos and RHEL)
This intends to add support for rendering of network data under sysconfig
distributions (centos and rhel). The end result will be support for
network configuration via ConfigDrive or NoCloud on these OS.
Diffstat (limited to 'cloudinit/net/__init__.py')
-rw-r--r-- | cloudinit/net/__init__.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cloudinit/net/__init__.py b/cloudinit/net/__init__.py index f5668fff..6959ad34 100644 --- a/cloudinit/net/__init__.py +++ b/cloudinit/net/__init__.py @@ -26,7 +26,6 @@ from cloudinit import util LOG = logging.getLogger(__name__) SYS_CLASS_NET = "/sys/class/net/" DEFAULT_PRIMARY_INTERFACE = 'eth0' -LINKS_FNAME_PREFIX = "etc/systemd/network/50-cloud-init-" def sys_dev_path(devname, path=""): |