summaryrefslogtreecommitdiff
path: root/global/overlay/etc/puppet/modules/sunet/manifests/ethernet_bonding.pp
diff options
context:
space:
mode:
authorFredrik Thulin <fredrik@thulin.net>2013-11-27 14:22:33 +0100
committerFredrik Thulin <fredrik@thulin.net>2013-11-27 14:22:33 +0100
commit60c413ad91ef734ec978ecf3ff658c17452b2282 (patch)
tree439bb6b4a59cdb630219016827c7326904654d59 /global/overlay/etc/puppet/modules/sunet/manifests/ethernet_bonding.pp
parent9a51c9e38a7556934d4be8eaa663ce4a0482a39b (diff)
Add some goodies from the eduid-ops repo.sunet-ops-2013-11-27-v09
Diffstat (limited to 'global/overlay/etc/puppet/modules/sunet/manifests/ethernet_bonding.pp')
-rw-r--r--global/overlay/etc/puppet/modules/sunet/manifests/ethernet_bonding.pp19
1 files changed, 19 insertions, 0 deletions
diff --git a/global/overlay/etc/puppet/modules/sunet/manifests/ethernet_bonding.pp b/global/overlay/etc/puppet/modules/sunet/manifests/ethernet_bonding.pp
new file mode 100644
index 0000000..8ff7325
--- /dev/null
+++ b/global/overlay/etc/puppet/modules/sunet/manifests/ethernet_bonding.pp
@@ -0,0 +1,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',
+ }
+ }
+}