X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fbacula%2Fmanifests%2Fdirector.pp;h=daa0d6ba07dadd54f4f4338d9d8c1834e9087bbf;hb=fef6fe13456346f5ab0c74ef870ee50f23c1607e;hp=2d3033b61058eacb1ed5fc7ba7ac504ac4c279c5;hpb=2342f47256402a4e54d83cd32ce14302bab00c94;p=mirror%2Fdsa-puppet.git diff --git a/modules/bacula/manifests/director.pp b/modules/bacula/manifests/director.pp index 2d3033b61..daa0d6ba0 100644 --- a/modules/bacula/manifests/director.pp +++ b/modules/bacula/manifests/director.pp @@ -1,95 +1,133 @@ -class bacula::director inherits bacula { +# our bacula director +# +# @param bacula_db_address hostname of the postgres server for the catalog DB +# @param bacula_db_port port of the postgres server for the catalog DB +class bacula::director( + String $bacula_db_address = 'postgresql-manda-01.debian.org', + Integer $bacula_db_port = 5432, +) inherits bacula { - package { ['bacula-director-pgsql', 'bacula-common', 'bacula-common-pgsql']: - ensure => installed - } + ensure_packages ( [ + 'bacula-director-pgsql', + 'bacula-common', + 'bacula-common-pgsql' + ], { + ensure => 'installed', + }) - service { 'bacula-director': - ensure => running, - enable => true, - hasstatus => true, - require => Package['bacula-director-pgsql'] - } - systemd::override { 'bacula-director': - content => @(EOT) - [Unit] - After=unbound.service - | EOT - } + service { 'bacula-director': + ensure => running, + enable => true, + hasstatus => true, + require => Package['bacula-director-pgsql'] + } + dsa_systemd::override { 'bacula-director': + content => @(EOT) + [Unit] + After=unbound.service + | EOT + } - exec { 'bacula-director reload': - path => '/usr/bin:/usr/sbin:/bin:/sbin', - command => 'service bacula-director reload', - refreshonly => true, - } + exec { 'bacula-director reload': + path => '/usr/bin:/usr/sbin:/bin:/sbin', + command => 'service bacula-director reload', + refreshonly => true, + } - file { '/etc/bacula/conf.d': - ensure => directory, - mode => '0755', - group => bacula, - purge => true, - force => true, - recurse => true, - source => 'puppet:///files/empty/', - notify => Exec['bacula-director reload'] - } + file { '/etc/bacula/conf.d': + ensure => directory, + mode => '0755', + group => bacula, + purge => true, + force => true, + recurse => true, + source => 'puppet:///files/empty/', + notify => Exec['bacula-director reload'] + } - file { '/etc/bacula/bacula-dir.conf': - content => template('bacula/bacula-dir.conf.erb'), - mode => '0440', - group => bacula, - require => Package['bacula-director-pgsql'], - notify => Exec['bacula-director reload'] - } + file { '/etc/bacula/bacula-dir.conf': + content => template('bacula/bacula-dir.conf.erb'), + mode => '0440', + group => bacula, + require => Package['bacula-director-pgsql'], + notify => Exec['bacula-director reload'] + } - @ferm::rule { 'dsa-bacula-dir': - domain => '(ip)', - description => 'Allow bacula access from localhost', - rule => "proto tcp mod state state (NEW) dport (bacula-dir) saddr (${bacula_director_ip} localhost) ACCEPT", - } + file { '/etc/bacula/conf.d/empty.conf': + content => '', + mode => '0440', + group => bacula, + require => Package['bacula-director-pgsql'], + notify => Exec['bacula-director reload'] + } - file { '/etc/bacula/conf.d/empty.conf': - content => '', - mode => '0440', - group => bacula, - require => Package['bacula-director-pgsql'], - notify => Exec['bacula-director reload'] - } + Bacula::Node<<| |>> - Bacula::Node<<| |>> + package { 'bacula-console': + ensure => installed; + } - package { 'bacula-console': - ensure => installed; - } + file { '/etc/bacula/bconsole.conf': + content => template('bacula/bconsole.conf.erb'), + mode => '0640', + group => bacula, + require => Package['bacula-console'] + } - file { '/etc/bacula/bconsole.conf': - content => template('bacula/bconsole.conf.erb'), - mode => '0640', - group => bacula, - require => Package['bacula-console'] - } + package { 'python3-psycopg2': ensure => installed } + file { '/etc/bacula/scripts/volume-purge-action': + mode => '0555', + source => 'puppet:///modules/bacula/volume-purge-action', + ; + } + file { '/etc/bacula/scripts/volumes-delete-old': + mode => '0555', + source => 'puppet:///modules/bacula/volumes-delete-old', + ; + } + file { '/etc/bacula/storages-list.d': + ensure => directory, + mode => '0755', + group => bacula, + purge => true, + force => true, + recurse => true, + source => 'puppet:///files/empty/', + } + file { '/usr/local/sbin/dsa-bacula-scheduler': + source => 'puppet:///modules/bacula/dsa-bacula-scheduler', + mode => '0555', + } - package { 'python3-psycopg2': ensure => installed } - file { '/etc/bacula/scripts/volume-purge-action': - mode => '0555', - source => 'puppet:///modules/bacula/volume-purge-action', - ; - } - file { '/etc/bacula/scripts/volumes-delete-old': - mode => '0555', - source => 'puppet:///modules/bacula/volumes-delete-old', - ; - } - file { '/etc/bacula/storages-list.d': - ensure => directory, - mode => '0755', - group => bacula, - purge => true, - force => true, - recurse => true, - source => 'puppet:///files/empty/', - } - file { "/etc/cron.d/puppet-bacula-stuff": - source => 'puppet:///modules/bacula/crontab-director', - } + file { '/etc/cron.d/puppet-bacula-stuff': ensure => absent, } + concat::fragment { 'puppet-crontab--bacula-director': + target => '/etc/cron.d/puppet-crontab', + content => @(EOF) + @daily root chronic /etc/bacula/scripts/volume-purge-action -v + @daily root chronic /etc/bacula/scripts/volumes-delete-old -v + */3 * * * * root sleep $(( $RANDOM \% 60 )); flock -w 0 -e /usr/local/sbin/dsa-bacula-scheduler /usr/local/sbin/dsa-bacula-scheduler + | EOF + } + + concat { $bacula::bacula_dsa_client_list: + } + concat::fragment { 'bacula-dsa-client-list::header' : + target => $bacula::bacula_dsa_client_list, + content => '', + order => '00', + } + Concat::Fragment <<| tag == $bacula::tag_bacula_dsa_client_list |>> + + @@ferm::rule::simple { "bacula::director-to-fd::${::fqdn}": + tag => "bacula::director-to-fd::${::fqdn}", + description => 'Allow bacula-fd from the bacula-director', + port => '7', # overridden on collecting + saddr => $bacula::public_addresses, + } + @@ferm::rule::simple { "bacula::director-to-storage::${::fqdn}": + tag => "bacula::director-to-storage::${::fqdn}", + description => 'Allow bacula-storage access from the bacula-director', + chain => 'bacula-sd', + saddr => $bacula::public_addresses, + } }