From 5c8bbc90e56a801282db37211c1e3adb837f42f6 Mon Sep 17 00:00:00 2001 From: Thom May Date: Tue, 23 Jun 2015 15:27:27 +0100 Subject: [PATCH] fix spelling of restriction --- README.md | 4 ++-- recipes/default.rb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9d15966..586881a 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ See `attributes/default.rb` for default values. * `node['postfix']['use_transport_maps']` - set to true if you want the cookbook to use/configure transport maps * `node['postfix']['use_access_maps']` - set to true if you want the cookbook to use/configure access maps * `node['postfix']['use_virtual_aliases']` - set to true if you want the cookbook to use/configure virtual alias maps -* `node['postfix']['use_relay_restirictions_maps']` - set to true if you want the cookbook to use/configure a list of domains to which postfix will allow relay +* `node['postfix']['use_relay_restrictions_maps']` - set to true if you want the cookbook to use/configure a list of domains to which postfix will allow relay * `node['postfix']['aliases']` - hash of aliases to create with `recipe[postfix::aliases]`, see below under __Recipes__ for more information. * `node['postfix']['transports']` - hash of transports to create with `recipe[postfix::transports]`, see below under __Recipes__ for more information. * `node['postfix']['access']` - hash of access to create with `recipe[postfix::access]`, see below under __Recipes__ for more information. @@ -278,7 +278,7 @@ To use relay restrictions override the relay restrictions attribute in this form ```ruby override_attributes( "postfix" => { - "use_relay_restirictions_maps" => true, + "use_relay_restrictions_maps" => true, "relay_restrictions" => { "chef.io" => "OK", ".chef.io" => "OK", diff --git a/recipes/default.rb b/recipes/default.rb index f6c833f..ba28cdc 100644 --- a/recipes/default.rb +++ b/recipes/default.rb @@ -44,7 +44,7 @@ if node['postfix']['use_virtual_aliases_domains'] include_recipe 'postfix::virtual_aliases_domains' end -if node['postfix']['use_relay_restirictions_maps'] +if node['postfix']['use_relay_restrictions_maps'] include_recipe 'postfix::relay_restrictions' end