X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fbacula%2Fmanifests%2Fclient.pp;h=af4ea466e0231b73c485c9843fb0bd8afb050be7;hb=a12c4008b7390efd732bea998b656499012b4380;hp=f9f113298a3b2521be6cca3622a535968b8e7964;hpb=3d0358a63f806461cdf786cbcc6b34b0ee23d681;p=mirror%2Fdsa-puppet.git diff --git a/modules/bacula/manifests/client.pp b/modules/bacula/manifests/client.pp index f9f113298..af4ea466e 100644 --- a/modules/bacula/manifests/client.pp +++ b/modules/bacula/manifests/client.pp @@ -1,44 +1,71 @@ class bacula::client inherits bacula { + @@bacula::storage-per-node { $::fqdn: } - package { - "bacula-client": ensure => installed; - "bacula-fd": ensure => installed; - } + if $::hostname in [beethoven, berlioz, biber, diabelli, dinis, draghi, geo3, kaufmann, lully, master, picconi, reger, schumann, soler, vento, vieuxtemps, wilder, wolkenstein] { + @@bacula::node { $::fqdn: } + } - service { - "bacula-fd": - ensure => running, - enable => true, - hasstatus => true, - require => Package["bacula-fd"]; - } + package { ['bacula-fd']: + ensure => installed + } - file { - "/etc/bacula/bacula-fd.conf": - content => template("bacula/bacula-fd.conf.erb"), - mode => 640, - owner => root, - group => bacula, - require => Package["bacula-fd"], - notify => Exec["bacula-fd restart"] - ; - } + service { 'bacula-fd': + ensure => running, + enable => true, + hasstatus => true, + require => Package['bacula-fd'] + } - exec { - "bacula-fd restart": - path => "/etc/init.d:/usr/bin:/usr/sbin:/bin:/sbin", - refreshonly => true; - } + exec { 'bacula-fd restart-when-idle': + path => '/usr/bin:/usr/sbin:/bin:/sbin', + command => 'sh -c "setsid /usr/local/sbin/bacula-idle-restart fd &"', + refreshonly => true, + subscribe => File['/etc/ssl/debian/certs/thishost.crt'], + require => File['/usr/local/sbin/bacula-idle-restart'], + } - @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", - } + 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 { '/usr/local/sbin/postbaculajob': + mode => '0775', + source => 'puppet:///modules/bacula/postbaculajob', + } + file { '/etc/default/bacula-fd': + content => template('bacula/default.bacula-fd.erb'), + mode => '0400', + owner => root, + group => root, + require => Package['bacula-fd'], + notify => Service['bacula-fd'], + } + if $::lsbmajdistrelease < 7 { + file { '/etc/apt/preferences.d/dsa-bacula-client': + content => template('bacula/apt.preferences.bacula-client.erb'), + mode => '0444', + owner => root, + group => root, + } + } else { + file { '/etc/apt/preferences.d/dsa-bacula-client': + ensure => absent + } + } - @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-v4': + domain => '(ip)', + description => 'Allow bacula access from storage and director', + 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_ip6}) ACCEPT", + #} }