X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fbacula%2Fmanifests%2Fclient.pp;h=ebc3e5c6dca6d7261f6faf356e3fb8cef7d87b26;hb=20057599ae5e0608d0f922a177b8beb609e7564c;hp=2918a7938a79c1bc28208192ceff636a4716dce9;hpb=4b0d5b04319abfcdd5ef3a80b31f7728900f358e;p=mirror%2Fdsa-puppet.git diff --git a/modules/bacula/manifests/client.pp b/modules/bacula/manifests/client.pp index 2918a7938..ebc3e5c6d 100644 --- a/modules/bacula/manifests/client.pp +++ b/modules/bacula/manifests/client.pp @@ -1,84 +1,105 @@ -class bacula::client inherits bacula { - @@bacula::storage_per_node { $::fqdn: } +# 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 ! getfromhash($site::nodeinfo, 'not-bacula-client') { - @@bacula::node { $::fqdn: - bacula_client_port => $bacula::bacula_client_port, - } - } + if $ensure == 'present' { + @@bacula::storage_per_node { $::fqdn: } - package { ['bacula-fd']: - ensure => installed - } + @@bacula::node { $::fqdn: + bacula_client_port => $bacula::bacula_client_port, + } - service { 'bacula-fd': - ensure => running, - enable => true, - hasstatus => true, - require => Package['bacula-fd'] - } + @@concat::fragment { "bacula-dsa-client-list::$fqdn": + target => $bacula::bacula_dsa_client_list , + content => @("EOF"), + ${fqdn} + | EOF + tag => $bacula::tag_bacula_dsa_client_list, + } + } elsif $ensure == 'absent' { + file { '/etc/bacula': + ensure => absent, + purge => true, + force => true, + recurse => 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[$bacula_ssl_server_cert], File[$bacula_ssl_client_cert] ], - require => File['/usr/local/sbin/bacula-idle-restart'], - } + ensure_packages ( [ + 'bacula-fd', + 'bacula-common', + ], { + ensure => $package_ensure + }) - file { '/etc/bacula/bacula-fd.conf': - 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': - mode => '0775', - source => 'puppet:///modules/bacula/bacula-backup-dirs', - } - 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 (versioncmp($::lsbmajdistrelease, '9') >= 0 and $systemd) { - file { '/etc/systemd/system/bacula-fd.service.d': - ensure => directory, - mode => '0755', - owner => root, - group => root, - } - file { '/etc/systemd/system/bacula-fd.service.d/user.conf': - source => 'puppet:///modules/bacula/bacula-fd-systemd', - mode => '0400', - owner => root, - group => root, - notify => Exec['systemctl daemon-reload'], - } - } else { - file { '/etc/systemd/system/bacula-fd.service.d/user.conf': - ensure => absent, - } - } + service { 'bacula-fd': + ensure => $service_ensure, + enable => $service_enable, + hasstatus => true, + require => Package['bacula-fd'] + } - @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_client_port}) saddr (${bacula_director_ip}) ACCEPT", - } + 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_ssl_server_cert], File[$bacula_ssl_client_cert] ], + require => File['/usr/local/sbin/bacula-idle-restart'], + } - #@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", - #} + 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 $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, + } + } + + ferm::rule { 'dsa-bacula-fd': + domain => '(ip ip6)', + description => 'Allow bacula access from storage and director', + rule => "proto tcp mod state state (NEW) dport (${bacula_client_port}) saddr (${bacula_director_ip_addrs}) ACCEPT", + } }