summaryrefslogtreecommitdiff
path: root/manifests/base.pp
blob: 7959f018a977f003857aeceb795c20b56bc4af95 (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
# base things for shorewall
class shorewall::base {

  package { 'shorewall':
    ensure => $shorewall::ensure_version,
  }

  # This file has to be managed in place, so shorewall can find it
  file {
    '/etc/shorewall/shorewall.conf':
      require => Package[shorewall],
      notify  => Service[shorewall],
      owner   => root,
      group   => 0,
      mode    => '0644';
    '/etc/shorewall/puppet':
      ensure  => directory,
      require => Package[shorewall],
      owner   => root,
      group   => 0,
      mode    => '0644';
  }

  if $shorewall::conf_source {
    File['/etc/shorewall/shorewall.conf']{
      source => $shorewall::conf_source,
    }
  } else {

  Class['augeas'] -> Class['shorewall::base']

  augeas { 'shorewall_module_config_path':
    changes => 'set /files/etc/shorewall/shorewall.conf/CONFIG_PATH \'"/etc/shorewall/puppet:/etc/shorewall:/usr/share/shorewall"\'',
    lens    => 'Shellvars.lns',
    incl    => '/etc/shorewall/shorewall.conf',
    notify  => Service['shorewall'],
    require => Package['shorewall'];
  }
  }

  service{'shorewall':
    ensure      => running,
    enable      => true,
    hasstatus   => true,
    hasrestart  => true,
    require     => Package['shorewall'],
  }
}