X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fbacula%2Fmanifests%2Fclient.pp;h=a718c812333fbb225a61e0e24ec7f061c6782a8a;hb=e96e72674696752c5a15e7618677b704919f4dc8;hp=22e924ea65b94670aa5f60daff9ee7892389b7ff;hpb=1e668aac875ff5af3f52d6417184cc7c5de1463c;p=mirror%2Fdsa-puppet.git diff --git a/modules/bacula/manifests/client.pp b/modules/bacula/manifests/client.pp index 22e924ea6..a718c8123 100644 --- a/modules/bacula/manifests/client.pp +++ b/modules/bacula/manifests/client.pp @@ -1,4 +1,5 @@ class bacula::client inherits bacula { + @@bacula::storage-per-node { $::fqdn: } package { ['bacula-fd']: ensure => installed @@ -11,24 +12,30 @@ class bacula::client inherits bacula { require => Package['bacula-fd'] } - file { '/etc/bacula/bacula-fd.conf': - content => template('bacula/bacula-fd.conf.erb'), - mode => '0640', - owner => root, - group => bacula, - require => Package['bacula-fd'], - notify => Service['bacula-fd'] + file { + '/etc/bacula/bacula-fd.conf': + content => template('bacula/bacula-fd.conf.erb'), + mode => '0640', + owner => root, + group => bacula, + require => Package['bacula-fd'], + notify => Service['bacula-fd'], + ; + '/usr/local/sbin/postbaculajob': + mode => '0775', + source => 'puppet:///modules/bacula/postbaculajob', + ; } @ferm::rule { 'dsa-bacula-fd-v4': domain => '(ip)', description => 'Allow bacula access from storage and director', - rule => "proto tcp mod state state (NEW) dport (bacula-fd) saddr (${bacula_director_address}) ACCEPT", + rule => "proto tcp mod state state (NEW) dport (bacula-fd) saddr (${bacula_director_ip}) ACCEPT", } #@ferm::rule { 'dsa-bacula-fd-v6': # domain => '(ip6)', # description => 'Allow bacula access from storage and director', - # rule => "proto tcp mod state state (NEW) dport (bacula-fd) saddr (${bacula_director_address}) ACCEPT", + # rule => "proto tcp mod state state (NEW) dport (bacula-fd) saddr (${bacula_director_ip6}) ACCEPT", #} }