| Index: modules/adblockplus/manifests/init.pp | 
| diff --git a/modules/adblockplus/manifests/init.pp b/modules/adblockplus/manifests/init.pp | 
| index b0d84d7240873d5debb7d2e12e5bcef25819ee71..687342d3130f92f170ee7a07495457cdefdfd8b9 100644 | 
| --- a/modules/adblockplus/manifests/init.pp | 
| +++ b/modules/adblockplus/manifests/init.pp | 
| @@ -21,6 +21,10 @@ | 
| #   An array of adblockplus::packages items to set up in this context, | 
| #   via Hiera, exclusively. | 
| # | 
| +# [*services*] | 
| +#   A hiera_hash() of zero or more service items used as 2nd parameter for | 
| +#   the the ensure_resources('service', ...) function. | 
| +# | 
| # === Examples: | 
| # | 
| #   class {'adblockplus': | 
| @@ -145,4 +149,8 @@ class adblockplus ( | 
| # modules/adblockplus/manifests/sudoers.pp | 
| $sudoers = hiera_hash('adblockplus::sudoers', {}) | 
| create_resources('adblockplus::sudoers', $sudoers) | 
| + | 
| +  # https://puppet.com/docs/puppet/latest/types/service.html | 
| +  $services = hiera_hash('adblockplus::services', {}) | 
| +  create_resources('service', $services) | 
| } | 
|  |