X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;ds=sidebyside;f=modules%2Fbacula%2Fmanifests%2Fdirector.pp;h=ca065c7d0a06e246f17fd28a96c908a68ce3dc3c;hb=92461482f97287c63b614ae7338594023711ce12;hp=3b62c59621bb18f499ae3d6852caf8d62e35955e;hpb=93aa8a665a0d34bfe7a16c4e65dbd4875feac197;p=mirror%2Fdsa-puppet.git diff --git a/modules/bacula/manifests/director.pp b/modules/bacula/manifests/director.pp index 3b62c5962..ca065c7d0 100644 --- a/modules/bacula/manifests/director.pp +++ b/modules/bacula/manifests/director.pp @@ -1,5 +1,32 @@ # our bacula director -class bacula::director inherits bacula { +# +# @param pool_name A token to be used in pool names +# @param db_address hostname of the postgres server for the catalog DB +# @param db_port port of the postgres server for the catalog DB +# @param db_name DB name for the catalog DB +# @param db_user username for the postgres server for the catalog DB +# @param port_dir Port that the director should listen on +# @param db_sslca SSL CA store for DB access +# @param director_name bacula name of this dir instance +# @param director_address address of this sd instance that other instances should connect to (dns name) +class bacula::director( + String $db_address, + Integer $db_port, + String $db_name = 'bacula', + String $db_user = 'bacula', + String $pool_name = 'bacula', + Integer $port_dir = 9101, + Optional[String] $db_sslca = undef, + #String $director_name = "${::fqdn}-dir", + String $director_name = $bacula::bacula_director_name, + Stdlib::Host $director_address = $::fqdn, +) inherits bacula { + + # used by e.g. bconsole + $director_secret = hkdf('/etc/puppet/secret', "bacula-dir-${::fqdn}") + # the RestoreFiles Job needs a Pool and a client. Any valid pool and client. + $some_pool_name = "poolfull-${pool_name}-${director_address}" + $some_client_name = "${director_address}-fd" ensure_packages ( [ 'bacula-director-pgsql', @@ -55,7 +82,8 @@ class bacula::director inherits bacula { notify => Exec['bacula-director reload'] } - Bacula::Node<<| |>> + Bacula::Director::Client <<| tag == "bacula::to-director::${::fqdn}" |>> + Bacula::Director::Client_from_storage<<| tag == "bacula::to-director::${::fqdn}" |>> package { 'bacula-console': ensure => installed; @@ -113,9 +141,15 @@ class bacula::director inherits bacula { Concat::Fragment <<| tag == $bacula::tag_bacula_dsa_client_list |>> @@ferm::rule::simple { "bacula::director-to-fd::${::fqdn}": - tag => 'bacula::director-to-fd', + 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', + description => 'Allow bacula-storage access from the bacula-director', + chain => 'bacula-sd', + saddr => $bacula::public_addresses, + } }