]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - modules/bacula/manifests/director.pp
Merge branch 'master' of git+ssh://puppet.debian.org/srv/puppet.debian.org/git/dsa...
[dsa-puppet.git] / modules / bacula / manifests / director.pp
index 37bea1d269563aee9cf3fcccc8bd72f066793e54..40720b7496c7ff8f05fd2e99354fed44ab4d5f6b 100644 (file)
@@ -35,19 +35,22 @@ class bacula::director inherits bacula {
       refreshonly => true;
   }
 
-  define bacula_client($client) {
+  define bacula_client() {
     # These must be kept in sync with the settings in bacula.pp
-    $bacula_client_name       = "$client-fd"
-    $bacula_client_secret     = hmac("/etc/puppet/secret", "bacula-fd-$client")
+    $bacula_client_name       = "${name}-fd"
+    $bacula_client_secret     = hmac("/etc/puppet/secret", "bacula-fd-${name}")
+    $client = $name
 
     file {
-      "/etc/bacula/conf.d/$client.conf":
+      "/etc/bacula/conf.d/${name}.conf":
       content => template("bacula/per-client.conf.erb"),
       mode => 440,
       group => bacula,
       notify  => Exec["bacula-director restart"]
       ;
+    }
   }
+  $allhosts = keys($site::allnodeinfo)
 
-  bacula_client(allnodeinfo('hostname', ''))
+  bacula_client { $allhosts: }
 }