X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fbacula%2Fmanifests%2Fclient.pp;h=474b22e9265726ea16237ca96b80094ea2cb6205;hb=56dda10452dc0f212cdeef366cce321016b20fb4;hp=8fbfb0d3e3e653132d86cbef56629af62d2e177a;hpb=6a6f323df04506d53a2d5fb8e30765ec216877d9;p=mirror%2Fdsa-puppet.git diff --git a/modules/bacula/manifests/client.pp b/modules/bacula/manifests/client.pp index 8fbfb0d3e..474b22e92 100644 --- a/modules/bacula/manifests/client.pp +++ b/modules/bacula/manifests/client.pp @@ -1,6 +1,6 @@ class bacula::client inherits bacula { - package { ['bacula-client', 'bacula-fd']: + package { ['bacula-fd']: ensure => installed } @@ -11,13 +11,19 @@ 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': @@ -26,9 +32,9 @@ class bacula::client inherits bacula { rule => "proto tcp mod state state (NEW) dport (bacula-fd) saddr (${bacula_director_address}) 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", - } + #@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", + #} }