blob: 8ce3d8b6f9f532d5393bdecbe7ba4bbf47e01292 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
# ISO image for Dell VEP4600 devices
image_formats = "iso"
# Replace built-in NIC naming rules with empty files
# to prevent them from taking any effect
[[includes_chroot]]
path = "lib/systemd/network/99-default.link"
data = ''
[[includes_chroot]]
path = "lib/udev/rules.d/65-vyatta-net.rules"
data = ''
[[includes_chroot]]
path = "lib/udev/rules.d/75-persistent-net-generator.rules"
data = ''
# Install platform-specific link files
[[includes_chroot]]
path = "etc/systemd/network/10-eth0-000.link"
data = '''
[Match]
Path=pci-0000:05:00.1
Driver=ixgbe
[Link]
Name=eth0
Alias=SFP+1
'''
[[includes_chroot]]
path = "etc/systemd/network/10-eth1-000.link"
data = '''
[Match]
Path=pci-0000:05:00.0
Driver=ixgbe
[Link]
Name=eth1
Alias=SFP+2
'''
[[includes_chroot]]
path = "etc/systemd/network/10-eth2-000.link"
data = '''
[Match]
Path=pci-0000:02:00.2
Driver=igb
[Link]
Name=eth2
Alias=GE1
'''
[[includes_chroot]]
path = "etc/systemd/network/10-eth3-000.link"
data = '''
[Match]
Path=pci-0000:02:00.3
Driver=igb
[Link]
Name=eth3
Alias=GE2
'''
[[includes_chroot]]
path = "etc/systemd/network/10-eth4-000.link"
data = '''
[Match]
Path=pci-0000:02:00.0
Driver=igb
[Link]
Name=eth4
Alias=GE3
'''
[[includes_chroot]]
path = "etc/systemd/network/10-eth5-000.link"
data = '''
[Match]
Path=pci-0000:02:00.1
Driver=igb
[Link]
Name=eth5
Alias=GE4
'''
[[includes_chroot]]
path = "etc/systemd/network/10-eth6-000.link"
data = '''
[Match]
Path=pci-0000:07:00.1
Driver=ixgbe
[Link]
Name=eth6
Alias=GE5
'''
[[includes_chroot]]
path = "etc/systemd/network/10-eth7-000.link"
data = '''
[Match]
Path=pci-0000:07:00.0
Driver=ixgbe
[Link]
Name=eth7
Alias=GE6
'''
|