Get rid of some intermediate variables
[mirror/dsa-puppet.git] / modules / roles / manifests / debian_mirror.pp
index 680eccd..46eb1ac 100644 (file)
@@ -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,