aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystem/sysctl/disable_ipv6.pp
blob: a6486a0f8b8f96bfdae6ab1d89f2fcb5a98c469e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Do not enable ipv6 by default
# See https://wiki.debian.org/DebianIPv6
class nodo::subsystem::sysctl::disable_ipv6(
  $ensure = hiera('nodo::sysctl::disable_ipv6', 'present'),
) {
  file { "/etc/sysctl.d/disable_ipv6.conf":
    owner   => "root",
    group   => "root",
    mode    => 0644,
    ensure  => $ensure,
    source  => "puppet:///modules/nodo/etc/sysctl.d/disable_ipv6.conf",
  }

  exec { "sysctl-disable-ipv6":
    command     => '/sbin/sysctl -p',
    subscribe   => File["/etc/sysctl.d/disable_ipv6.conf"],
    refreshonly => true,
  }
}