summaryrefslogtreecommitdiff
path: root/puppet/modules/site_config/manifests/sysctl.pp
blob: 99f75123236880305153ea056f9b48b7f74004e3 (plain)
1
2
3
4
5
6
7
8
class site_config::sysctl {

  sysctl::config {
    'net.ipv4.ip_nonlocal_bind':
      value   => 1,
      comment => 'Allow applications to bind to an address when link is down (see https://leap.se/code/issues/4506)'
  }
}