X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fbacula%2Fmanifests%2Fclient.pp;h=dfeb176ed2ed4dbf05350cc7e6c920be2ec4efef;hb=fef6fe13456346f5ab0c74ef870ee50f23c1607e;hp=2e83772ddc1a7f863a15323d926acec5a07aa0f7;hpb=dbed5f999448fc9b345011cbf2b8b20a58467230;p=mirror%2Fdsa-puppet.git diff --git a/modules/bacula/manifests/client.pp b/modules/bacula/manifests/client.pp index 2e83772dd..dfeb176ed 100644 --- a/modules/bacula/manifests/client.pp +++ b/modules/bacula/manifests/client.pp @@ -1,60 +1,112 @@ -class bacula::client inherits bacula { - @@bacula::storage-per-node { $::fqdn: } - - if $::hostname in [beethoven, berlioz, biber, diabelli, dinis, draghi, geo3, lully, schumann, soler, widor, wilder, wolkenstein] { - @@bacula::node { $::fqdn: } - } - - package { ['bacula-fd']: - ensure => installed - } - - service { 'bacula-fd': - ensure => running, - enable => true, - hasstatus => true, - 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'], - ; - '/usr/local/sbin/postbaculajob': - mode => '0775', - source => 'puppet:///modules/bacula/postbaculajob', - ; - '/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'], - ; - '/etc/apt/preferences.d/dsa-bacula-client': - content => template('bacula/apt.preferences.bacula-client.erb'), - mode => '0444', - owner => root, - group => root, - ; - - } - - @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", - #} +# our bacula client configuration +# +# this mostly configures the file daemon, but also firewall rules and +# fragments to sent to the other servers. +class bacula::client( + Enum['present', 'absent'] $ensure = defined(Class['bacula::not_a_client']) ? { true => 'absent', default => 'present' }, +) inherits bacula { + $package_ensure = $ensure ? { 'present' => 'installed', 'absent' => 'purged' } + $service_ensure = $ensure ? { 'present' => 'running', 'absent' => 'stopped' } + $service_enable = $ensure ? { 'present' => true, 'absent' => false } + $reverse_ensure = $ensure ? { 'present' => 'absent', 'absent' => 'present' } + + if $ensure == 'present' { + @@bacula::storage_per_node { $::fqdn: } + + @@bacula::node { $::fqdn: + bacula_client_port => $bacula::bacula_client_port, + } + + @@concat::fragment { "bacula-dsa-client-list::${::fqdn}": + target => $bacula::bacula_dsa_client_list , + content => @("EOF"), + ${::fqdn} + | EOF + tag => $bacula::tag_bacula_dsa_client_list, + } + + # allow access from director + Ferm::Rule::Simple <<| tag == "bacula::director-to-fd::${bacula::bacula_director_address}" |>> { + port => $bacula::bacula_client_port, + } + + # get access to the storage + @@ferm::rule::simple { "bacula::fd-to-storage::${::fqdn}": + tag => "bacula::director-to-storage::${bacula::bacula_storage_address}", + description => 'Allow bacula-fd access to the bacula-storage', + chain => 'bacula-sd', + saddr => $bacula::public_addresses, + } + } elsif $ensure == 'absent' { + file { '/etc/bacula': + ensure => absent, + purge => true, + force => true, + recurse => true; + } + } + + ensure_packages ( [ + 'bacula-fd', + 'bacula-common', + ], { + ensure => $package_ensure + }) + + service { 'bacula-fd': + ensure => $service_ensure, + enable => $service_enable, + hasstatus => true, + require => Package['bacula-fd'] + } + + 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[$bacula::bacula_ssl_server_cert], File[$bacula::bacula_ssl_client_cert] ], + require => File['/usr/local/sbin/bacula-idle-restart'], + } + + file { '/etc/bacula/bacula-fd.conf': + ensure => $ensure, + content => template('bacula/bacula-fd.conf.erb'), + mode => '0640', + owner => root, + group => bacula, + require => Package['bacula-fd'], + notify => Exec['bacula-fd restart-when-idle'], + } + file { '/usr/local/sbin/bacula-backup-dirs': + ensure => $ensure, + mode => '0775', + source => 'puppet:///modules/bacula/bacula-backup-dirs', + } + file { '/usr/local/sbin/postbaculajob': + ensure => $ensure, + mode => '0775', + source => 'puppet:///modules/bacula/postbaculajob', + } + file { '/etc/default/bacula-fd': + ensure => $ensure, + content => template('bacula/default.bacula-fd.erb'), + mode => '0400', + owner => root, + group => root, + require => Package['bacula-fd'], + notify => Service['bacula-fd'], + } + if (versioncmp($::lsbmajdistrelease, '9') >= 0 and $facts['systemd']) { + dsa_systemd::override { 'bacula-fd': + content => @(EOT) + [Service] + ExecStart= + ExecStart=/usr/sbin/bacula-fd -c $CONFIG -f -u bacula -k + | EOT + } + } else { + dsa_systemd::override { 'bacula-fd': + ensure => absent, + } + } }