summaryrefslogtreecommitdiff
path: root/manifests/base.pp
blob: e5a37bb97dd6ef2d4d97aa902f9df0951ed4e10c (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
# base things for shorewall
class shorewall::base {

  ensure_packages({ '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  => Exec['shorewall_check'],
      owner   => 'root',
      group   => 'root',
      mode    => '0644';
    '/etc/shorewall/puppet':
      ensure  => directory,
      require => Package['shorewall'],
      owner   => 'root',
      group   => 'root',
      mode    => '0644';
  }
  if $shorewall::with_shorewall6 {
    package{'shorewall6':
      ensure => 'installed',
    }
    # serialize systemd where it's not yet done
    if (versioncmp($facts['shorewall_version'],'5.1.6') < 0) and (versioncmp($facts['os']['release']['major'],'6') > 0) {
      include ::systemd
      file{
        '/etc/systemd/system/shorewall6.service.d':
          ensure => directory,
          owner  => 'root',
          group  => 'root',
          mode   => '0644';
        '/etc/systemd/system/shorewall6.service.d/after-ipv4.conf':
          content => "[Unit]\nAfter=shorewall.service\n",
          owner   => 'root',
          group   => 'root',
          mode    => '0644',
          notify  => Exec['systemctl-daemon-reload'],
      }
      Exec['systemctl-daemon-reload'] -> Service['shorewall6']
    }
    file {
      '/etc/shorewall6/shorewall6.conf':
        require => Package['shorewall6'],
        notify  => Exec['shorewall6_check'],
        owner   => 'root',
        group   => 'root',
        mode    => '0600';
      '/etc/shorewall6/puppet':
        ensure  => directory,
        require => Package['shorewall6'],
        owner   => 'root',
        group   => 'root',
        mode    => '0600';
    }
  }

  if str2bool($shorewall::startup) {
    $startup_str = 'Yes'
  } else {
    $startup_str = 'No'
  }
  if $shorewall::conf_source {
    File['/etc/shorewall/shorewall.conf']{
      source => $shorewall::conf_source,
    }
  } else {
    shorewall::config_setting{
      'CONFIG_PATH':
        value => "\"\${CONFDIR}/shorewall/puppet:\${CONFDIR}/shorewall:\${SHAREDIR}/shorewall\"";
      'STARTUP_ENABLED':
        value => $startup_str;
    }
    $cfs =  keys($shorewall::merged_settings)
    shorewall::config_settings{
      $cfs:
        settings => $shorewall::merged_settings;
    }
  }
  exec{'shorewall_check':
    command     => 'shorewall check',
    refreshonly => true,
    require     => Package['shorewall'],
  } ~> exec{'shorewall_try':
    command     => 'shorewall try /etc/shorewall/puppet',
    refreshonly => true,
  } -> service{'shorewall':
    ensure     => running,
    enable     => true,
    hasstatus  => true,
    hasrestart => true,
  }

  if $shorewall::with_shorewall6 {
    shorewall::config6_setting{
      'CONFIG_PATH':
        value => "\"\${CONFDIR}/shorewall6/puppet:\${CONFDIR}/shorewall6:/usr/share/shorewall6:\${SHAREDIR}/shorewall\"";
      'STARTUP_ENABLED':
        value => $startup_str;
    }
    $cfs6 =  keys($shorewall::settings6)
    shorewall::config6_settings{
      $cfs6:
        settings => $shorewall::settings6;
    }

    exec{'shorewall6_check':
      command     => 'shorewall6 check',
      refreshonly => true,
      require     => Package['shorewall6'],
    } ~> exec{'shorewall6_try':
      command     => 'shorewall6 try /etc/shorewall6/puppet',
      refreshonly => true,
    } -> service{'shorewall6':
      ensure     => running,
      enable     => true,
      hasstatus  => true,
      hasrestart => true,
    }
  }

  file{'/etc/cron.daily/shorewall_check':}
  if $shorewall::daily_check {
    if $shorewall::with_shorewall6 {
      $shorewall6_check_str = ' && shorewall6 check'
    } else {
      $shorewall6_check_str = ''
    }
    File['/etc/cron.daily/shorewall_check']{
      content => "#!/bin/bash

output=\$((shorewall check${shorewall6_check_str}) 2>&1)
if [ \$? -gt 0 ]; then
  echo 'Error while checking firewall!'
  echo \"\${output}\"
  exit 1
fi
exit 0
",
      owner   => root,
      group   => 0,
      mode    => '0700',
      require => Service['shorewall'],
    }
    if $shorewall::with_shorewall6 {
      Service['shorewall6'] -> File['/etc/cron.daily/shorewall_check']
    }
  } else {
    File['/etc/cron.daily/shorewall_check']{
      ensure => absent,
    }
  }
}