]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/bacula/manifests/client.pp
move bacula::node export to bacula::client
[dsa-puppet.git] / modules / bacula / manifests / client.pp
1 class bacula::client inherits bacula {
2         @@bacula::storage-per-node { $::fqdn: }
3
4         if $::hostname in [beethoven, berlioz, biber, diabelli, dinis, draghi, geo3, schumann, soler, widor, wolkenstein] {
5                 @@bacula::node { $::fqdn: }
6         }
7
8         package { ['bacula-fd']:
9                 ensure => installed
10         }
11
12         service { 'bacula-fd':
13                 ensure    => running,
14                 enable    => true,
15                 hasstatus => true,
16                 require   => Package['bacula-fd']
17         }
18
19         file {
20                 '/etc/bacula/bacula-fd.conf':
21                         content => template('bacula/bacula-fd.conf.erb'),
22                         mode    => '0640',
23                         owner   => root,
24                         group   => bacula,
25                         require => Package['bacula-fd'],
26                         notify  => Service['bacula-fd'],
27                         ;
28                 '/usr/local/sbin/postbaculajob':
29                         mode    => '0775',
30                         source  => 'puppet:///modules/bacula/postbaculajob',
31                         ;
32         }
33
34         @ferm::rule { 'dsa-bacula-fd-v4':
35                 domain      => '(ip)',
36                 description => 'Allow bacula access from storage and director',
37                 rule        => "proto tcp mod state state (NEW) dport (bacula-fd) saddr (${bacula_director_ip}) ACCEPT",
38         }
39
40         #@ferm::rule { 'dsa-bacula-fd-v6':
41         #       domain      => '(ip6)',
42         #       description => 'Allow bacula access from storage and director',
43         #       rule        => "proto tcp mod state state (NEW) dport (bacula-fd) saddr (${bacula_director_ip6}) ACCEPT",
44         #}
45 }