From eced5e48a006e1877a1ec4c2bb69c7b31fb55968 Mon Sep 17 00:00:00 2001 From: Graeme Donaldson Date: Tue, 26 Aug 2014 15:40:48 +0200 Subject: [PATCH] Default to empty hash in FPM example, not empty array In the FPM example, an empty array is used as a default value for the hiera hash 'php_fpm_config'. This should be an empty hash instead. --- docs/examples.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples.rst b/docs/examples.rst index db1d1783..8282fe55 100644 --- a/docs/examples.rst +++ b/docs/examples.rst @@ -78,7 +78,7 @@ FPM } create_resources('php::fpm::pool', hiera_hash('php_fpm_pool', {})) - create_resources('php::fpm::config', hiera_hash('php_fpm_config', [])) + create_resources('php::fpm::config', hiera_hash('php_fpm_config', {})) Php::Extension <| |> ~> Service['php5-fpm']