From: Tollef Fog Heen Date: Sat, 16 Jun 2012 11:04:12 +0000 (+0200) Subject: Ensure we get string interpolation for director address X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=a531fb25c9411bc97e4a159445ce4b0a2a66b5aa;hp=3a01610f81254c8f4754591ec8fc259cc89237d8;p=dsa-puppet.git Ensure we get string interpolation for director address --- diff --git a/modules/bacula/manifests/client.pp b/modules/bacula/manifests/client.pp index 4cbe24c8..9b4894be 100644 --- a/modules/bacula/manifests/client.pp +++ b/modules/bacula/manifests/client.pp @@ -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; }", } }