blob: 3a19243676d4ead0c4680ed49afcd6dcdc971e18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright (C) 2013-2014 Canonical Ltd.
#
# Author: Scott Moser <scott.moser@canonical.com>
# Author: Blake Rouse <blake.rouse@canonical.com>
#
# This file is part of cloud-init. See LICENSE file for license information.
import six
from .udev import generate_udev_rule
def filter_by_type(match_type):
return lambda iface: match_type == iface['type']
def filter_by_name(match_name):
return lambda iface: match_name == iface['name']
filter_by_physical = filter_by_type('physical')
class Renderer(object):
@staticmethod
def _render_persistent_net(network_state):
"""Given state, emit udev rules to map mac to ifname."""
# TODO(harlowja): this seems shared between eni renderer and
# this, so move it to a shared location.
content = six.StringIO()
for iface in network_state.iter_interfaces(filter_by_physical):
# for physical interfaces write out a persist net udev rule
if 'name' in iface and iface.get('mac_address'):
content.write(generate_udev_rule(iface['name'],
iface['mac_address']))
return content.getvalue()
# vi: ts=4 expandtab
|