blob: 8ff73258429baafbd510ccaa36c1cafdf46a3c1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
define sunet::ethernet_bonding() {
# Set up prerequisites for Ethernet LACP bonding of eth0 and eth1,
# for all physical hosts that are running Ubuntu.
#
# Bonding requires setup in /etc/network/interfaces as well.
#
if $::is_virtual == 'false' and $::operatingsystem == 'Ubuntu' {
if $::operatingsystemrelease <= '12.04' {
package {'ifenslave': ensure => 'present' }
} else {
package {'ifenslave-2.6': ensure => 'present' }
}
file_line { 'load_module_at_boot':
path => '/etc/modules',
line => 'bonding',
}
}
}
|