From: Tollef Fog Heen Date: Fri, 2 Feb 2018 10:14:29 +0000 (+0100) Subject: Get rid of some intermediate variables X-Git-Url: https://git.adam-barratt.org.uk/?a=commitdiff_plain;h=6ea975ecb09870981deeb2407884eed569fb7869;p=mirror%2Fdsa-puppet.git Get rid of some intermediate variables --- diff --git a/modules/roles/manifests/debian_mirror.pp b/modules/roles/manifests/debian_mirror.pp index 680eccdc4..46eb1ac7b 100644 --- a/modules/roles/manifests/debian_mirror.pp +++ b/modules/roles/manifests/debian_mirror.pp @@ -30,9 +30,9 @@ class roles::debian_mirror { } } - $mirrors = hiera('roles.debian_mirror', {}) - $fastly_mirrors = $mirrors.filter |$h| { $h[1]['fastly-backend'] } - $hosts_to_check = $fastly_mirrors.map |$h| { $h[1]['service-hostname'] } + $hosts_to_check = hiera('roles.debian_mirror', {}) + .filter |$h| { $h[1]['fastly-backend'] } + .map |$h| { $h[1]['service-hostname'] } roles::mirror_health { 'ftp': check_hosts => $hosts_to_check,