X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fbacula%2Fmanifests%2Fdirector.pp;h=dd5395df664d533aaae971551c31c222e323a5da;hb=421d51cedb758b5a27a89b5c458562f9c279cbc3;hp=f5d54f917109779d44c7b6a5e6fcaf5f4ee83868;hpb=2c7a8959ea8c3389dd3930ad40f8a3250c2f9d8f;p=mirror%2Fdsa-puppet.git diff --git a/modules/bacula/manifests/director.pp b/modules/bacula/manifests/director.pp index f5d54f917..dd5395df6 100644 --- a/modules/bacula/manifests/director.pp +++ b/modules/bacula/manifests/director.pp @@ -10,9 +10,10 @@ # @param db_sslca SSL CA store for DB access # @param director_name bacula name of this dir instance # @param director_address address of this dir instance that other instances should connect to (dns name) +# @param messages_name name of the Messages Resource class bacula::director( - String $db_address, - Integer $db_port, + String $db_address = 'localhost', + Integer $db_port = 5432, String $db_name = 'bacula', String $db_user = 'bacula', String $db_password = hkdf('/etc/puppet/secret', "bacula-db-${::hostname}"), @@ -21,6 +22,7 @@ class bacula::director( Optional[String] $db_sslca = undef, String $director_name = "${::fqdn}-dir", Stdlib::Host $director_address = $::fqdn, + String $messages_name = "Msg-${::fqdn}", ) inherits bacula { # used by e.g. bconsole @@ -34,12 +36,14 @@ class bacula::director( tag => 'bacula::to-storage', director_name => $director_name, director_address => $director_address, + messages_name => $messages_name, } # let FDs know we exist @@bacula::client::director{ $::fqdn: tag => "bacula::to-fd::${director_address}", director_name => $director_name, director_address => $director_address, + messages_name => $messages_name, } ensure_packages ( [ @@ -59,7 +63,7 @@ class bacula::director( dsa_systemd::override { 'bacula-director': content => @(EOT) [Unit] - After=unbound.service + After=network-online.target unbound.service | EOT } @@ -95,8 +99,8 @@ class bacula::director( notify => Exec['bacula-director reload'] } - Bacula::Director::Client <<| tag == "bacula::to-director::${::fqdn}" |>> Bacula::Director::Client_from_storage<<| tag == "bacula::to-director::${::fqdn}" |>> + Bacula::Director::Client <<| tag == "bacula::to-director::${::fqdn}" |>> package { 'bacula-console': ensure => installed; @@ -136,19 +140,15 @@ class bacula::director( file { '/etc/cron.d/puppet-bacula-stuff': ensure => absent, } concat::fragment { 'puppet-crontab--bacula-director': target => '/etc/cron.d/puppet-crontab', - content => @(EOF) + 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 + @daily root chronic /etc/bacula/scripts/volumes-delete-old -v --token '${pool_name}' + */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', + ensure_newline => true, } Concat::Fragment <<| tag == $bacula::tag_bacula_dsa_client_list |>>