]> git.donarmstrong.com Git - dsa-puppet.git/commitdiff
Ensure we get string interpolation for director address
authorTollef Fog Heen <tfheen@err.no>
Sat, 16 Jun 2012 11:04:12 +0000 (13:04 +0200)
committerTollef Fog Heen <tfheen@err.no>
Sat, 16 Jun 2012 11:04:12 +0000 (13:04 +0200)
modules/bacula/manifests/client.pp

index 4cbe24c8cb6893e3733e21273ff911c6b5beb042..9b4894be9f8c0e6e73d822ad497dabc56dbac1de 100644 (file)
@@ -33,6 +33,6 @@ class bacula::client inherits bacula {
   @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-fd) @subchain \'bacula\' { saddr ($bacula_director_address) ACCEPT; }',
+    rule        => "proto tcp mod state state (NEW) dport (bacula-fd) @subchain \'bacula\' { saddr ($bacula_director_address) ACCEPT; }",
   }
 }