]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - modules/bacula/manifests/client.pp
our prefix is dsa
[dsa-puppet.git] / modules / bacula / manifests / client.pp
index 22e924ea65b94670aa5f60daff9ee7892389b7ff..db93aa72c8410dcdc6b08d408c2ee386556796bc 100644 (file)
@@ -1,4 +1,9 @@
 class bacula::client inherits bacula {
+       @@bacula::storage-per-node { $::fqdn: }
+
+       if $::hostname in [beethoven, berlioz, biber, diabelli, dinis, draghi, geo3, kaufmann, lully, master, new-master, reger, schumann, soler, vento, vieuxtemps, wilder, wolkenstein] {
+               @@bacula::node { $::fqdn: }
+       }
 
        package { ['bacula-fd']:
                ensure => installed
@@ -17,18 +22,42 @@ class bacula::client inherits bacula {
                owner   => root,
                group   => bacula,
                require => Package['bacula-fd'],
-               notify  => Service['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-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",
        #}
 }